7 lines
115 B
Bash
7 lines
115 B
Bash
#!/bin/bash
|
|
|
|
until python -m src; do
|
|
echo "Sebi-Machine shutdown with error: $?. Restarting..." >&2
|
|
sleep 1
|
|
done
|