Files
plain-ub-overfork/run
overspend1 8fe355ed0c Update README and alive command for @overspend1 fork
- Updated README title to show OVERSPEND1 FORK
- Changed maintainer credit to @overspend1
- Updated alive command to show @overspend1 as creator instead of Meliodas
2025-07-25 20:27:05 +02:00

12 lines
154 B
Bash
Executable File

#!/usr/bin/env bash
if ! [ -d ".git" ] ; then
git init
fi
while true; do
python -m app
exit_code=$?
[ $exit_code -ne 69 ] && break
done