pdv.frontend/install.sh
2025-12-30 14:00:59 -06:00

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