ncDocConverter/scripts/run.cmd

15 lines
405 B
Batchfile
Raw Permalink Normal View History

2022-09-22 13:22:58 +00:00
@ECHO OFF
:: Bypass the "Terminate Batch Job" prompt
if "%~1"=="-FIXED_CTRL_C" (
:: Remove the -FIXED_CTRL_C parameter
SHIFT
) ELSE (
:: Run the batch with <NUL and -FIXED_CTRL_C
CALL <NUL %0 -FIXED_CTRL_C %*
GOTO :EOF
)
2023-01-02 10:44:59 +00:00
SET PATH=%PATH%;C:\Windows\System32
2022-09-22 13:22:58 +00:00
set GOTMPDIR=C:\MYCOMP
2023-01-02 10:44:59 +00:00
nodemon --delay 1s -e go,html --ignore web/app/ --signal SIGKILL --exec go run ./cmd/ncDocConverth || exit 1