mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2024-12-04 15:06:51 +01:00
6 lines
214 B
Bash
6 lines
214 B
Bash
#!/bin/bash
|
|
# Copies the configuration files
|
|
cd "$(dirname "$(readlink -f "${0}")")/../" || exit 1
|
|
cp -v .env.dist docker-symfony/.env
|
|
cp -v ./application/symfony/phpunit.xml.dist ./application/symfony/phpunit.xml
|