Merge pull request #1064 from mempool/wiz/add-liquidtestnet-to-upgrade-script

Add missing liquidtestnet backend to upgrade script
This commit is contained in:
wiz 2021-12-30 21:59:37 +00:00 committed by GitHub
commit 10c4e47091
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ update_repo()
cd "$HOME/${site}" || exit 1
git fetch origin || exit 1
for remote in origin knorrium hunicus;do
for remote in origin knorrium emzy nymkappa hunicus;do
git remote add "${remote}" "https://github.com/${remote}/mempool" >/dev/null 2>&1
git fetch "${remote}" || exit 1
done
@ -66,8 +66,8 @@ ship_frontend()
export NVM_DIR="${HOME}/.nvm"
source "${NVM_DIR}/nvm.sh"
for target in mainnet liquid bisq testnet signet;do update_repo "${target}";done
for target in mainnet liquid bisq testnet signet;do build_backend "${target}";done
for target in mainnet testnet signet liquid liquidtestnet bisq;do update_repo "${target}";done
for target in mainnet testnet signet liquid liquidtestnet bisq;do build_backend "${target}";done
for target in mainnet liquid bisq;do build_frontend "${target}";done
for target in mainnet liquid bisq;do ship_frontend "${target}";done