From 4d1aeeda4c749b907c61578cd542e37230773717 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 19 May 2016 13:28:13 -0700 Subject: [PATCH] tools: build.bat: better exit code handling to allow for CI --- tools/build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build.bat b/tools/build.bat index a0a6a6fe..ba7a5fd6 100644 --- a/tools/build.bat +++ b/tools/build.bat @@ -36,7 +36,7 @@ for %%f in (build\%Configuration%\winfsp-*.msi) do ( REM if errorlevel 1 set /a signfail=signfail+1 ) -if not %signfail%==0 echo SIGNING FAILED! +if not %signfail%==0 echo SIGNING FAILED! The product has been successfully built, but not signed. exit /b 0