From 6db3fa158b0f9e4fd64d9d3a40333d2d5bd4c7e6 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sun, 30 Aug 2015 01:27:24 +0000 Subject: [PATCH] Remove install/uninstall scripts --- install | 23 ----------------------- uninstall | 2 -- 2 files changed, 25 deletions(-) delete mode 100755 install delete mode 100755 uninstall diff --git a/install b/install deleted file mode 100755 index 10ad915..0000000 --- a/install +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -set -e - -TMP=$(mktemp pirate-get-XXXXXX) - -{ - if [ $(which python3) ] - then - python='python3' - else - python='python' - fi - - echo "#!/usr/bin/env $python" > "$TMP" && - - sed 1d $(dirname $0)/pirate-get.py >> "$TMP" - - cp "$TMP" /usr/bin/pirate-get && - chmod +x /usr/bin/pirate-get && - chmod 755 /usr/bin/pirate-get && - - rm $TMP -} || rm $TMP diff --git a/uninstall b/uninstall deleted file mode 100755 index 34edb8b..0000000 --- a/uninstall +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -rm /usr/bin/pirate-get