Update README and download.sh

This commit is contained in:
Caleb Bassi 2018-05-10 23:50:12 -07:00
parent 28bca3f397
commit f959128281
2 changed files with 4 additions and 3 deletions

View File

@ -18,8 +18,7 @@ Only working and tested on Linux. OSX is no longer supported due to issues with
### Using Git
Go programs compile to a single binary and there are currently prebuilt ones for 32/64bit Linux and ARM Linux in the [releases tab](https://github.com/cjbassi/gotop/releases).
Clone the repo then run [scripts/download.sh](https://github.com/cjbassi/gotop/blob/master/scripts/download.sh) to download the correct binary for your system:
Clone the repo then run [scripts/download.sh](https://github.com/cjbassi/gotop/blob/master/scripts/download.sh) to download the correct binary for you system from the release tab:
```sh
git clone --depth 1 https://github.com/cjbassi/gotop /tmp/gotop

View File

@ -20,7 +20,9 @@ case "$arch" in
Linux\ *64) download linux_amd64 ;;
Linux\ *86) download linux_386 ;;
*)
echo "No binary found for your system"
echo "\
No binary found for your system.
Feel free to request that we prebuild one that works on your system."
exit 1
;;
esac