mirror of
https://github.com/miguelmota/cointop
synced 2024-11-05 00:00:14 +00:00
9576af6b66
Previous regex was including the "v" in the query, causing the release links to 404, since the filenames in the releases do not contain the "v".
18 lines
485 B
Bash
Executable File
18 lines
485 B
Bash
Executable File
#!/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
|
|
)
|