Remove oneliners

This commit is contained in:
rrole 2025-11-25 13:05:02 +01:00
parent a405ad9df2
commit 70a53a31fe
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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