cheat-fork-echo/install

14 lines
319 B
Python
Executable File

#!/usr/bin/env python
from os.path import expanduser
import shutil
import sys
try:
shutil.copy('./cheat', '/usr/local/bin/')
shutil.copy('./.cheat/', expanduser('~'))
except IOError as e:
print >> sys.stderr, "This installer must be run as root."
sys.exit(1)
# don't forget to chown back to the normal user