From 2c960065e20bba00df6f590eb090d70a705e8cf2 Mon Sep 17 00:00:00 2001
From: Michael Larson <mlarson@westernintech.com>
Date: Sun, 19 Jul 2015 10:52:08 -0700
Subject: [PATCH] nmake: continue on error

---
 vsprojects/make.bat | 5 +++--
 1 file 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
-- 
GitLab