From 5de974a03636bc0a64ee98892c136353a4b00318 Mon Sep 17 00:00:00 2001 From: Bernd Langpap Date: Mon, 4 Jul 2016 10:31:11 +0200 Subject: [PATCH 1/2] modified build.bat for msvc to support no-pausing script-based installation Signed-off-by: Bernd Langpap --- builds/msvc/build/build.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builds/msvc/build/build.bat b/builds/msvc/build/build.bat index 7be27ca2..fdcbdbec 100644 --- a/builds/msvc/build/build.bat +++ b/builds/msvc/build/build.bat @@ -32,4 +32,6 @@ set STOPTIME=%DATE% %TIME% :done @endlocal +if NOT "%%1" == "" if /I "%%1" == "skip_pause" goto :quit PAUSE +:quit \ No newline at end of file From 73631bf1c9219ec84e384e94b3f465cf17d2335e Mon Sep 17 00:00:00 2001 From: Bernd Langpap Date: Mon, 4 Jul 2016 11:06:56 +0200 Subject: [PATCH 2/2] modified build.bat to support non-pausing installation --- builds/msvc/build/build.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builds/msvc/build/build.bat b/builds/msvc/build/build.bat index fdcbdbec..87a2022f 100644 --- a/builds/msvc/build/build.bat +++ b/builds/msvc/build/build.bat @@ -32,6 +32,7 @@ set STOPTIME=%DATE% %TIME% :done @endlocal -if NOT "%%1" == "" if /I "%%1" == "skip_pause" goto :quit +if NOT %1 == "" if /I %1 == "skip_pause" goto :quit + PAUSE :quit \ No newline at end of file