From 389d6d56719834fc020c59885c8e17c325eb5494 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Tue, 13 Aug 2013 11:49:37 +0100 Subject: [PATCH] Remove old install script --- install | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 install diff --git a/install b/install deleted file mode 100755 index cf64c1f..0000000 --- a/install +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python -from os.path import expanduser -import shutil -import sys - -try: - shutil.copy('./cheat', '/usr/local/bin/') - shutil.copytree('./.cheat', expanduser('~') + '/.cheat') - print "cheat has been installed successfully." -except IOError as e: - print >> sys.stderr, "This installer must be run as root." - sys.exit(1)