repositories
/
deb_libcec.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e58420
)
win32: only call 'exit' when building in teamcity
author
Lars Op den Kamp
<lars@opdenkamp.eu>
Thu, 19 Apr 2012 10:46:18 +0000
(12:46 +0200)
committer
Lars Op den Kamp
<lars@opdenkamp.eu>
Thu, 19 Apr 2012 10:46:18 +0000
(12:46 +0200)
support/create-installer.bat
patch
|
blob
|
blame
|
history
diff --git
a/support/create-installer.bat
b/support/create-installer.bat
index 73b7a0f1341a5c9fc803a7f6aa20bd109a739503..d9f6a579d3b3a20d8586250000f3633716b199f3 100644
(file)
--- 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%
+)
+