Make it quit early, also only install dev dependencies
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
This commit is contained in:
parent
71b1725655
commit
6a64d5e019
1 changed files with 4 additions and 1 deletions
|
@ -49,8 +49,11 @@ build_script:
|
||||||
rm base
|
rm base
|
||||||
cp -Rf ../base ./base
|
cp -Rf ../base ./base
|
||||||
|
|
||||||
npm install
|
npm install --only=dev
|
||||||
|
if [ $? -ne 0 ]; then continue; fi;
|
||||||
|
|
||||||
npm run build
|
npm run build
|
||||||
|
if [ $? -ne 0 ]; then continue; fi;
|
||||||
|
|
||||||
./7zas a -xr!*.xcf -mx9 "${CURR_VER}_build-sc.7z" package.json index.mjs api base public
|
./7zas a -xr!*.xcf -mx9 "${CURR_VER}_build-sc.7z" package.json index.mjs api base public
|
||||||
echo "Creating release on gitea"
|
echo "Creating release on gitea"
|
||||||
|
|
Loading…
Reference in a new issue