15 lines
211 B
Batchfile
15 lines
211 B
Batchfile
@echo off
|
|
|
|
:botlaunch
|
|
node index.js
|
|
call :err_unwrap
|
|
|
|
timeout /nobreak /t 5 >NUL
|
|
goto botlaunch
|
|
|
|
:err_unwrap
|
|
set _err=%ERRORLEVEL%
|
|
if %_err% neq 0 (
|
|
exit %_err%
|
|
)
|
|
goto :eof
|