mirror of
https://github.com/kennethreitz-archive/changebot.git
synced 2026-06-05 15:30:19 +00:00
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
# poor man's reloader.
|
|
# re-starts evilbot when he dies of an error.
|
|
|
|
until /usr/bin/env coffee evilbot.coffee; do
|
|
echo "evilbot crashed with exit code $?. respawning.." >&2
|
|
sleep 1
|
|
done
|