aboutsummaryrefslogtreecommitdiffhomepage
path: root/vsprojects
diff options
context:
space:
mode:
authorGravatar Michael Larson <mlarson@westernintech.com>2015-07-19 10:52:08 -0700
committerGravatar Michael Larson <mlarson@westernintech.com>2015-07-19 10:52:08 -0700
commit2c960065e20bba00df6f590eb090d70a705e8cf2 (patch)
tree5309ad956d0d0aebdaaddabd4d96c9286d9c9744 /vsprojects
parentd6fafad06761b46ada8c6b64a7fae2032ef34377 (diff)
nmake: continue on error
Diffstat (limited to 'vsprojects')
-rw-r--r--vsprojects/make.bat5
1 files changed, 3 insertions, 2 deletions
diff --git a/vsprojects/make.bat b/vsprojects/make.bat
index 04737aeefc..08c97bcd21 100644
--- a/vsprojects/make.bat
+++ b/vsprojects/make.bat
@@ -5,6 +5,7 @@ setlocal
@rem Set VS variables (uses Visual Studio 2013)
@call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86
-nmake /f Grpc.mak %*
+@rem /K: continue on error
+nmake /K /f Grpc.mak %*
exit /b %ERRORLEVEL%
-endlocal \ No newline at end of file
+endlocal