Remove the installation script.

This commit is contained in:
Renato Silva 2014-12-04 09:37:38 -02:00
parent 8bcabbd846
commit 23c8155290
1 changed files with 0 additions and 15 deletions

View File

@ -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