返回提交历史
Modified
UPDATE AND START SERVER.bat
+4
-3
XFEstudio/SpaceNinjaServer
fix(starter-bat): don't start if build step has failed (#1069)
Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1069
3442f15c
代码差异
1 个文件
+4
-3
@@ -16,9 +16,10 @@ echo Updating dependencies...
16
16
call npm i
17
17
18
18
call npm run build
19
call npm run start
20
21
echo SpaceNinjaServer seems to have crashed.
19
if %errorlevel% == 0 (
20
call npm run start
21
echo SpaceNinjaServer seems to have crashed.
22
)
22
23
:a
23
24
pause > nul
24
25
goto a