summaryrefslogtreecommitdiffstats
path: root/download.sh
blob: 7296f2716dfc7bb1758aff57a1172944fa3610a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash

VERSION=1.2.3

download() {
    curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/gotop-$VERSION-${1}.tgz > gotop.tgz
    tar xf gotop.tgz
    rm gotop.tgz
}

arch=$(uname -sm)
case "$arch" in
    Linux\ *64)  download linux_amd64    ;;
    Linux\ *86)  download linux_386      ;;
    Darwin\ *64) download darwin_amd64   ;;
    *)
        echo "No binary found for your system"
        exit 1
        ;;
esac