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:
5ee3722
)
win32: added an exit code in the build script
author
Lars Op den Kamp
<lars@opdenkamp.eu>
Thu, 5 Apr 2012 18:03:48 +0000
(20:03 +0200)
committer
Lars Op den Kamp
<lars@opdenkamp.eu>
Thu, 5 Apr 2012 18:03:48 +0000
(20:03 +0200)
support/create-installer.bat
patch
|
blob
|
blame
|
history
diff --git
a/support/create-installer.bat
b/support/create-installer.bat
index 2f19005ba7e611eac5bd55f690a0f2490d79293f..73b7a0f1341a5c9fc803a7f6aa20bd109a739503 100644
(file)
--- a/
support/create-installer.bat
+++ b/
support/create-installer.bat
@@
-1,5
+1,7
@@
@echo off
+set EXITCODE=1
+
rem Check for NSIS
IF EXIST "%ProgramFiles%\NSIS\makensis.exe" (
set NSIS="%ProgramFiles%\NSIS\makensis.exe"
@@
-134,6
+136,7
@@
IF "%1%"=="" (
echo. The installer can be found here: ..\build\libCEC-%1%-installer.exe
)
+set EXITCODE=0
GOTO EXIT
:NOSDK10
@@
-162,3
+165,4
@@
del /s /f /q ..\build\x64
rmdir ..\build\x64
cd ..\support
+exit %EXITCODE%