From 70a53a31fe48bbe12f5a8a40bfb59d08c85c966f Mon Sep 17 00:00:00 2001 From: rrole Date: Tue, 25 Nov 2025 13:05:02 +0100 Subject: [PATCH] Remove oneliners --- ct/wanderer.sh | 3 ++- install/wanderer-install.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ct/wanderer.sh b/ct/wanderer.sh index 763021073..872fdd22b 100644 --- a/ct/wanderer.sh +++ b/ct/wanderer.sh @@ -40,7 +40,8 @@ function update_script() { msg_info "Updating $APP" $STD fetch_and_deploy_gh_release "$APP" "Flomp/wanderer" "tarball" "latest" "/opt/wanderer/source" cd /opt/wanderer/source/db - $STD go mod tidy && $STD go build + $STD go mod tidy + $STD go build cd /opt/wanderer/source/web $STD npm ci --omit=dev $STD npm run build diff --git a/install/wanderer-install.sh b/install/wanderer-install.sh index 03bed2531..d7152671a 100644 --- a/install/wanderer-install.sh +++ b/install/wanderer-install.sh @@ -39,7 +39,8 @@ $STD meilisearch & $STD sleep 1 $STD kill %% cd /opt/wanderer/source/db -$STD go mod tidy && $STD go build +$STD go mod tidy +$STD go build cd /opt/wanderer/source/web $STD npm i -s vitest $STD npm ci --omit=dev