From 853314ba5805d897509961b761bd0ebd24227c89 Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 31 Dec 2021 06:55:16 +0900 Subject: [PATCH] Add missing liquidtestnet backend to upgrade script --- production/mempool-upgrade-all | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/production/mempool-upgrade-all b/production/mempool-upgrade-all index a7e662c46..3aecdbd93 100755 --- a/production/mempool-upgrade-all +++ b/production/mempool-upgrade-all @@ -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