This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/lib/restart.py
2012-02-29 11:53:43 -08:00

14 lines
249 B
Python
Executable file

#!/usr/bin/env python
# Tiny little restarter by neersighted
import sys
import os
import subprocess
if os.path.isfile("./cloudbot"):
restart = "./cloudbot restart"
else:
restart = "./bot.py"
subprocess.call(restart, shell=True)
sys.exit()