12 lines
144 B
Bash
Executable File
12 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! [ -d ".git" ] ; then
|
|
git init
|
|
fi
|
|
|
|
while true; do
|
|
python -m app
|
|
exit_code=$?
|
|
[ $exit_code -ne 69 ] && break
|
|
done
|