ops: Remove bisq from build script

This commit is contained in:
wiz 2024-04-02 14:55:52 +09:00
parent cfb1e1d908
commit faa990a2c6
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

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