summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaleb Bassi <calebjbassi@gmail.com>2018-02-19 15:56:35 -0800
committerCaleb Bassi <calebjbassi@gmail.com>2018-02-19 15:56:35 -0800
commitd8d9b44c87b4a69f8c69fe45f3c5f0a793747634 (patch)
treea2abb5f70ae274487b7667d537c10bb5ad5fa52a
parent3a695dede9f4dd38e2084268caf4422eb8c11f76 (diff)
Updated install.sh
-rwxr-xr-xinstall.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index cfc488a..3be661a 100755
--- a/install.sh
+++ b/install.sh
@@ -5,11 +5,12 @@ VERSION=1.0.0
arch=$(uname -sm)
case "$arch" in
- Linux\ *64) exe=linux_amd64 ;;
+ Linux\ *64) arch=linux_amd64 ;;
esac
-curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/gotop-$exe > /usr/bin/gotop
-chmod +x /usr/bin/gotop
+curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/gotop-$arch.tgz > /tmp/gotop.tgz
+tar xf /tmp/gotop.tgz -C /usr/bin
+rm /tmp/gotop.tgz
update() {
cur_version=$(gotop -v 2>/dev/null)