Files
Chris Wanstrath ea475c3386 EVILBOT
2010-12-15 21:41:02 -08:00

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