From 018a9fe4926e9231a9a0fba65bf96b2214b9dd8a Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 4 Jan 2020 04:55:26 +0900 Subject: [PATCH] Modify seednode install script to use GitHub API for latest release tags --- seednode/install_seednode_debian.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seednode/install_seednode_debian.sh b/seednode/install_seednode_debian.sh index 3fccc580e61..3ad19772b4e 100755 --- a/seednode/install_seednode_debian.sh +++ b/seednode/install_seednode_debian.sh @@ -15,13 +15,13 @@ SYSTEMD_ENV_HOME=/etc/default BISQ_REPO_URL=https://github.com/bisq-network/bisq BISQ_REPO_NAME=bisq -BISQ_REPO_TAG=v1.2.4 +BISQ_REPO_TAG=$(curl -s https://api.github.com/repos/bisq-network/bisq/releases/latest|grep tag_name|head -1|cut -d '"' -f4) BISQ_HOME=/bisq BISQ_USER=bisq BITCOIN_REPO_URL=https://github.com/bitcoin/bitcoin BITCOIN_REPO_NAME=bitcoin -BITCOIN_REPO_TAG=v0.19.0.1 +BITCOIN_REPO_TAG=$(curl -s https://api.github.com/repos/bitcoin/bitcoin/releases/latest|grep tag_name|head -1|cut -d '"' -f4) BITCOIN_HOME=/bitcoin BITCOIN_USER=bitcoin BITCOIN_GROUP=bitcoin