13 lines
152 B
Bash
Executable File
13 lines
152 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f .env ]; then
|
|
cp .env.example .env
|
|
fi
|
|
|
|
if [ ! -f colors.css ]; then
|
|
cp colors.css.example colors.css
|
|
fi
|
|
|
|
exec "$@"
|
|
|
|
echo "Done!" |