diff --git a/wizard.sh b/wizard.sh index 820204b4..29563d30 100755 --- a/wizard.sh +++ b/wizard.sh @@ -30,7 +30,13 @@ buildAssets () { rm -f http/rice-box.go cd $REPO/frontend - npm install + + if [ "$CI" = "true" ]; then + npm ci + else + npm install + fi + npm run build }