From 3bf9e6658dd1962ac18153865bad6c8c38b24d9f Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Mon, 19 Feb 2018 00:55:31 -0800 Subject: Updated install.sh --- README.md | 2 +- install.sh | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ef5858..e029436 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Built with [gopsutil](https://github.com/shirou/gopsutil), [drawille-go](https:/ Go code compiles to a single executable so you just need to somehow get that into your $PATH. -Either manually download the latest release for your OS from the releases tab and move it into `/bin`, or run this command to do it for you: +Either manually download the latest release for your OS from the releases tab and move it into `/usr/bin`, or run this command to do it for you: ``` curl https://raw.githubusercontent.com/cjbassi/gotop/master/install.sh | sudo sh diff --git a/install.sh b/install.sh index 7ae6233..689f0d7 100755 --- a/install.sh +++ b/install.sh @@ -2,5 +2,12 @@ VERSION=v1.0 -curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/gotop > /usr/bin/gotop -chmod +x /usr/bin/gotop +download() { + curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/${1} > /usr/bin/gotop + chmod +x /usr/bin/gotop +} + +arch=$(uname -sm) +case "$arch" in + Linux\ *64) download gotop-linux_amd64 ;; +esac -- cgit v1.2.3