Add wrapper script for easy restarts.

This commit is contained in:
Dustin Pianalto 2018-06-14 10:18:40 -08:00
parent 169f4d4379
commit 3a76598766

6
sebi_machine_launcher.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
until python -m src; do
echo "Sebi-Machine shutdown with error: $?. Restarting..." >&2
sleep 1
done