From a0f72c779717cf4908aab962ffa4f43f4d5b3e31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sun, 12 Jan 2020 22:11:38 +0100 Subject: [PATCH] Hide logs of goto in windows build.bat script --- build.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.bat b/build.bat index 7e6ebb5..cadb165 100644 --- a/build.bat +++ b/build.bat @@ -7,15 +7,15 @@ cd build @REM Generate a Visual Studio solution for latest version found cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON .. -if ERRORLEVEL 1 goto onError +@if ERRORLEVEL 1 goto onError @REM Build default configuration (ie 'Debug') cmake --build . -if ERRORLEVEL 1 goto onError +@if ERRORLEVEL 1 goto onError @REM Build and run tests ctest --output-on-failure -if ERRORLEVEL 1 goto onError +@if ERRORLEVEL 1 goto onError goto onSuccess