[Greater-commits] r3848 - trunk/packaging
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Dec 1 10:09:29 CET 2011
Author: aheinecke
Date: 2011-12-01 10:09:29 +0100 (Thu, 01 Dec 2011)
New Revision: 3848
Modified:
trunk/packaging/greater-installer.nsi
Log:
msiexec starts detatched so execwait returns too early
this can lead to postgres installation failures when the
runtimes are missing at the start of the postgres installation.
Modified: trunk/packaging/greater-installer.nsi
===================================================================
--- trunk/packaging/greater-installer.nsi 2011-12-01 09:01:47 UTC (rev 3847)
+++ trunk/packaging/greater-installer.nsi 2011-12-01 09:09:29 UTC (rev 3848)
@@ -137,8 +137,8 @@
DetailPrint "Installing Microsoft Visual C Runtime Libraries..."
File "vcredist_x86.exe"
File "vcredist-80_x86.exe"
- ExecWait 'msiexec /i "$TEMP\vcredist_x86.exe" /passive /q' $0
- ExecWait 'msiexec /i "$TEMP\vcredist-80_x86.exe" /passive /q' $0
+ ExecWait '$TEMP\vcredist_x86.exe /q' $0
+ ExecWait '$TEMP\vcredist-80_x86.exe /q' $0
Delete "$TEMP\vcredist_x86.exe"
Delete "$TEMP\vcredist-80_x86.exe"
; Store installation folder
More information about the Greater-commits
mailing list