From 23c8155290a115b83923abc59445ca93c4a0b138 Mon Sep 17 00:00:00 2001 From: Renato Silva Date: Thu, 4 Dec 2014 09:37:38 -0200 Subject: [PATCH] Remove the installation script. --- install.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 install.sh diff --git a/install.sh b/install.sh deleted file mode 100644 index 13e98d5..0000000 --- a/install.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -from=$(dirname "$0") -where="${1:-/usr/local/bin}" -mkdir -p "$where" || exit - -if [[ "$2" != --remove ]]; then - cp -v "$from/easyoptions" "$where" - cp -v "$from/bash/easyoptions.sh" "$where" - cp -v "$from/ruby/easyoptions.rb" "$where" -else - rm -vf "$where/easyoptions" - rm -vf "$where/easyoptions.sh" - rm -vf "$where/easyoptions.rb" -fi