ubot2/run_ubot_forever.sh

13 lines
160 B
Bash
Raw Normal View History

2016-07-06 01:54:18 -04:00
#!/usr/bin/env zsh
# Run ubot2 forever
# Eryn Wells <eryn@erynwells.me>
function start
{
while true; do
env/bin/python rtmbot.py
done
}
start