summaryrefslogtreecommitdiffstats
path: root/install.sh
blob: 041e807dfb55f6b44387c8e68f08c6cc10519127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

VERSION=$(curl --silent "https://api.github.com/repos/miguelmota/cointop/releases/latest" | grep -Po --color=never '"tag_name": ".\K.*?(?=")')

OSNAME="linux"
if [[ $(uname) == 'Darwin' ]]; then
  OSNAME="darwin"
fi

(
  cd /tmp
  wget https://github.com/miguelmota/cointop/releases/download/v${VERSION}/cointop_${VERSION}_${OSNAME}_amd64.tar.gz
  tar -xvzf cointop_${VERSION}_${OSNAME}_amd64.tar.gz cointop

  sudo mv cointop /usr/local/bin/cointop
  cointop --version
)