aboutsummaryrefslogtreecommitdiffstats
path: root/dist/installer
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@digia.com>2013-06-18 12:51:08 +0200
committerEike Ziller <eike.ziller@digia.com>2013-06-18 15:51:15 +0200
commit677b3104e9d3819ed007ee045b7a738dfc878f8b (patch)
tree5a1351847d9ab276630d2f3486d3e2bfe0e4b911 /dist/installer
parent89db22a1c8ebc406798ba589ef817729f4777b2f (diff)
fix locked DMG after installing Qt OSX package and starting creator
- the workingdir was inside the dmg so it couldn't unmounted Task-number: QTBUG-28963 Change-Id: I183098108743d9cc0bd00fb6bfaa3e5755c08191 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'dist/installer')
-rw-r--r--dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs b/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs
index 02ea1d2f9c..a0301e37fc 100644
--- a/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs
+++ b/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs
@@ -202,7 +202,7 @@ Component.prototype.installationFinished = function()
if (component.installed && installer.isInstaller() && installer.status == QInstaller.Success) {
var isLaunchQtCreatorCheckBoxChecked = component.userInterface("LaunchQtCreatorCheckBoxForm").launchQtCreatorCheckBox.checked;
if (isLaunchQtCreatorCheckBoxChecked)
- installer.executeDetached(component.qtCreatorBinaryPath);
+ installer.executeDetached(component.qtCreatorBinaryPath, new Array(), "@homeDir@");
}
} catch(e) {
print(e);