1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-10 10:04:21 +01:00
pirate-get/install.sh

24 lines
430 B
Bash
Raw Normal View History

2013-12-14 14:43:10 +01:00
#!/usr/bin/env sh
set -e
2013-12-14 14:12:17 +01:00
TMP=$(mktemp pirate-get-XXXXXX)
{
if [ $(which python2.7) ]
then
echo "#!/usr/bin/env python2.7" > "$TMP"
elif [ `which python2` ]
then
echo "#!/usr/bin/env python2" > "$TMP"
else
echo "#!/usr/bin/env python" > "$TMP"
fi
2013-12-14 14:12:17 +01:00
2014-01-31 23:15:47 +01:00
sed 1d $(dirname $0)/pirate-get.py >> "$TMP"
2013-12-14 14:12:17 +01:00
cp "$TMP" /usr/bin/pirate-get &&
chmod +x /usr/bin/pirate-get &&
chmod 755 /usr/bin/pirate-get &&
rm $TMP
} || rm $TMP