ops: Update build/unfurler stuff for onbtc

This commit is contained in:
wiz
2024-04-29 17:12:51 +09:00
parent f5333c529c
commit f9948055e4
3 changed files with 8 additions and 8 deletions

View File

@@ -129,7 +129,7 @@ export NVM_DIR="${HOME}/.nvm"
source "${NVM_DIR}/nvm.sh"
# what to look for
frontends=(mainnet liquid)
frontends=(mainnet liquid onbtc)
backends=(mainnet testnet signet liquid liquidtestnet)
frontend_repos=()
backend_repos=()
@@ -151,7 +151,7 @@ for repo in $backend_repos;do
done
# build unfurlers
for repo in mainnet liquid;do
for repo in $frontend_repos;do
build_unfurler "${repo}"
done
@@ -166,7 +166,7 @@ for repo in $frontend_repos;do
done
# ship frontend dist folders to public_html
for target in mainnet liquid;do
for target in $frontend_repos;do
ship_frontend "${target}"
done