update cheats script

This commit is contained in:
Scott Alexander-Bown 2013-08-12 13:46:52 +01:00
parent 15fd673a51
commit 38d55ba559

12
update Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env python
from os.path import expanduser
import shutil
import sys
try:
shutil.rmtree(expanduser('~') + '/.cheat')
shutil.copytree('./.cheat', expanduser('~') + '/.cheat')
print "cheats have been updated successfully."
except IOError as e:
print >> sys.stderr, "This updater must be run as root."
sys.exit(1)