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