Adds Itch.io Butler

This commit is contained in:
Julien Deswaef
2020-01-13 20:07:57 +01:00
committed by BARICHELLO
parent 05e01e9112
commit 6df44cac72
4 changed files with 44 additions and 0 deletions

13
getbutler.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/bash
mkdir -p /opt/butler/bin
cd /opt/butler/bin
wget -O butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default
unzip butler.zip
# GNU unzip tends to not set the executable bit even though it's set in the .zip
chmod +x butler
export PATH=/opt/butler/bin/:$PATH
cd ~