Juan Felipe Zapata Moreno dc26cc27da first commit
2025-09-18 13:52:21 -06:00

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!"