From f58f38039ea7d53a753f1993364db3c12b93cd2b Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Fri, 15 Mar 2013 05:54:00 +0100 Subject: [PATCH] check exit status from extract --- CLIENT_DATA/setup3264.ins | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CLIENT_DATA/setup3264.ins b/CLIENT_DATA/setup3264.ins index b6a1eb6..741af11 100644 --- a/CLIENT_DATA/setup3264.ins +++ b/CLIENT_DATA/setup3264.ins @@ -79,10 +79,11 @@ else if (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") Message "Installing " + $ProductId$ + " "+ $VERSION$ + "-" + $CREATOR_TAG$ + $RELEASE$ + " 32 Bit..." + ChangeDirectory "%SCRIPTPATH%" comment "Extract the setup programm" Winbatch_extract_32 + Sub_check_exitcode comment "Start setup program" - ChangeDirectory "%SCRIPTPATH%" Winbatch_install_32 Sub_check_exitcode comment "Copy files" @@ -95,10 +96,11 @@ else if ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) Message "Installing " + $ProductId$ + " " + $VERSION$ + "-" + $CREATOR_TAG$ + $RELEASE$ + " 64 Bit..." + ChangeDirectory "%SCRIPTPATH%" comment "Extract the setup programm" Winbatch_extract_64 + Sub_check_exitcode comment "Start setup program" - ChangeDirectory "%SCRIPTPATH%" Winbatch_install_64 Sub_check_exitcode comment "Copy files"