From 7c814672a2406f8947455a6049a519e69fa7bde4 Mon Sep 17 00:00:00 2001 From: ppierson Date: Fri, 16 Aug 2013 13:19:40 -0400 Subject: [PATCH] modified: install --- install | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/install b/install index b179e26..ec0bc1d 100755 --- a/install +++ b/install @@ -1,12 +1,6 @@ -#!/usr/bin/env python -from os.path import expanduser -import shutil -import sys +#!/bin/sh -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, e - sys.exit(1) +cp ./cheat /usr/local/bin +cp -r ./.cheat ~/ + +printf "Cheat has been intsalled sucessfully."