Skip to content

Commit a0f72c7

Browse files
committed
Hide logs of goto in windows build.bat script
1 parent 9108bbb commit a0f72c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ cd build
77

88
@REM Generate a Visual Studio solution for latest version found
99
cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON ..
10-
if ERRORLEVEL 1 goto onError
10+
@if ERRORLEVEL 1 goto onError
1111

1212
@REM Build default configuration (ie 'Debug')
1313
cmake --build .
14-
if ERRORLEVEL 1 goto onError
14+
@if ERRORLEVEL 1 goto onError
1515

1616
@REM Build and run tests
1717
ctest --output-on-failure
18-
if ERRORLEVEL 1 goto onError
18+
@if ERRORLEVEL 1 goto onError
1919

2020
goto onSuccess
2121

0 commit comments

Comments
 (0)