mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-05 20:41:34 +01:00
6 lines
185 B
Bash
6 lines
185 B
Bash
#!/bin/bash
|
|
# Copies the configuration files
|
|
cd $(dirname $(readlink -f ${0}))/../;
|
|
cp -v .env.dist docker-symfony/.env;
|
|
cp -v ./application/phpunit.xml.dist ./application/phpunit.xml;
|