From 3c9f1fb46448428d31ae4b34de3c95d1785a200e Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Thu, 19 Apr 2012 12:46:18 +0200 Subject: [PATCH] win32: only call 'exit' when building in teamcity --- support/create-installer.bat | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/support/create-installer.bat b/support/create-installer.bat index 73b7a0f..d9f6a57 100644 --- a/support/create-installer.bat +++ b/support/create-installer.bat @@ -165,4 +165,9 @@ del /s /f /q ..\build\x64 rmdir ..\build\x64 cd ..\support -exit %EXITCODE% +IF "%1%"=="" ( + echo. exitcode = %EXITCODE% +) ELSE ( + exit %EXITCODE% +) + -- 2.34.1