fix(starter-bat): don't start if build step has failed
All checks were successful
Build / build (18) (push) Successful in 52s
Build / build (18) (pull_request) Successful in 51s
Build / build (22) (pull_request) Successful in 57s
Build / build (22) (push) Successful in 35s
Build / build (20) (push) Successful in 53s
Build / build (20) (pull_request) Successful in 36s

This commit is contained in:
Sainan 2025-03-03 12:32:55 +01:00
parent d7ec259e2d
commit f12dccc3e3

View File

@ -16,9 +16,10 @@ echo Updating dependencies...
call npm i
call npm run build
call npm run start
echo SpaceNinjaServer seems to have crashed.
if %errorlevel% == 0 (
call npm run start
echo SpaceNinjaServer seems to have crashed.
)
:a
pause > nul
goto a