We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 089bf72 commit f81506dCopy full SHA for f81506d
build_windows.cmd
@@ -10,6 +10,7 @@ net session >nul 2>&1
10
if %errorlevel% neq 0 (
11
echo Administrator privileges required. Exiting.
12
exit 1 /b
13
+ pause
14
)
15
16
:: ===========================================
@@ -58,9 +59,10 @@ if "%BUILD_RELEASE%"=="" (
58
59
) else (
60
cmake --build build --config Release
61
-
62
-echo ============================================
63
-echo Build completed successfully.
64
+if %errorlevel% neq 0 (
+ echo ============================================
+ echo Build completed successfully.
65
66
+)
67
68
exit /b 0
0 commit comments