1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-09 09:59:51 +01:00

Remove install/uninstall scripts

This commit is contained in:
rnhmjoj 2015-08-30 01:27:24 +00:00
parent e7fb682309
commit 6db3fa158b
2 changed files with 0 additions and 25 deletions

23
install
View File

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

View File

@ -1,2 +0,0 @@
#!/bin/sh
rm /usr/bin/pirate-get