- Updated README title to show OVERSPEND1 FORK - Changed maintainer credit to @overspend1 - Updated alive command to show @overspend1 as creator instead of Meliodas
12 lines
154 B
Bash
Executable File
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
|