From 15fd673a51a1dff903f69e4cbb6811a58e0a414e Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Sun, 11 Aug 2013 15:59:03 -0400 Subject: [PATCH] Modified the installer such that it now outputs text on successful installation. --- install | 1 + 1 file changed, 1 insertion(+) diff --git a/install b/install index 5818d24..cf64c1f 100755 --- a/install +++ b/install @@ -6,6 +6,7 @@ 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)