comal-pagos/install.sh
Juan Felipe Zapata Moreno 43eb9226e6 Rediseño
2025-11-10 16:17:29 -06:00

13 lines
153 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!"