cheat/update

13 lines
333 B
Plaintext
Raw Normal View History

2013-08-12 14:46:52 +02:00
#!/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)