We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14d356d commit 6bb057eCopy full SHA for 6bb057e
vcbuild.bat
@@ -343,12 +343,16 @@ for /d %%F in (test\addons\??_*) do (
343
)
344
:: generate
345
"%node_exe%" tools\doc\addon-verify.js
346
+if %errorlevel% neq 0 exit /b %errorlevel%
347
:: building addons
348
+SetLocal EnableDelayedExpansion
349
for /d %%F in (test\addons\*) do (
350
"%node_exe%" deps\npm\node_modules\node-gyp\bin\node-gyp rebuild ^
351
--directory="%%F" ^
352
--nodedir="%cd%"
353
+ if !errorlevel! neq 0 exit /b !errorlevel!
354
355
+EndLocal
356
goto run-tests
357
358
:run-tests
0 commit comments