From 29a59ce47e3c6367f19c525415ba4cfff16d867e Mon Sep 17 00:00:00 2001 From: lordmulder Date: Fri, 6 Apr 2012 16:36:13 +0200 Subject: [PATCH] Fix of previous commit. --- etc/NSIS/wrapper.nsi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/etc/NSIS/wrapper.nsi b/etc/NSIS/wrapper.nsi index fa7920ec..f80347ab 100644 --- a/etc/NSIS/wrapper.nsi +++ b/etc/NSIS/wrapper.nsi @@ -157,8 +157,8 @@ Section "-LaunchTheInstaller" RunTryAgain: - DetailPrint "ExecShellWait: $PLUGINSDIR\LameXP-Install.exe" - ${StdUtils.ExecShellWait} $R1 "$PLUGINSDIR\LameXP-Install.exe" "open" '$R9' + DetailPrint "ExecShellWait: $PLUGINSDIR\LameXP-SETUP.${LAMEXP_DATE}.${LAMEXP_BUILD}.exe" + ${StdUtils.ExecShellWait} $R1 "$PLUGINSDIR\LameXP-SETUP.${LAMEXP_DATE}.${LAMEXP_BUILD}.exe" "open" '$R9' DetailPrint "Result: $R1" StrCmp $R1 "error" RunFailed @@ -177,11 +177,11 @@ Section "-LaunchTheInstaller" ; -------- ClearErrors - ExecShell "open" "$PLUGINSDIR\LameXP-Install.exe" '$R9' SW_SHOWNORMAL + ExecShell "open" "$PLUGINSDIR\LameXP-SETUP.${LAMEXP_DATE}.${LAMEXP_BUILD}.exe" '$R9' SW_SHOWNORMAL IfErrors 0 RunSuccess ClearErrors - ExecShell "" "$PLUGINSDIR\LameXP-Install.exe" '$R9' SW_SHOWNORMAL + ExecShell "" "$PLUGINSDIR\LameXP-SETUP.${LAMEXP_DATE}.${LAMEXP_BUILD}.exe" '$R9' SW_SHOWNORMAL IfErrors 0 RunSuccess ; -------- @@ -196,5 +196,5 @@ Section "-LaunchTheInstaller" RunSuccess: - Delete /REBOOTOK "$PLUGINSDIR\LameXP-Install.exe" -SectionEnd \ No newline at end of file + Delete /REBOOTOK "$PLUGINSDIR\LameXP-SETUP.${LAMEXP_DATE}.${LAMEXP_BUILD}.exe" +SectionEnd