aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@digia.com>2012-11-12 13:44:51 +0100
committerKai Koehne <kai.koehne@digia.com>2012-11-12 13:48:40 +0100
commitbc2a262d3003ba4cc352a3c398c31ab16263c07e (patch)
tree2dda7f20babab728cbba02031e07acb9fda85d18
parenta726b18036dfd9e785902476e4b1d055cdd9450a (diff)
QtCreator: Add missing bracketsv5.0.0-beta2
Fix missing brackets in a726b18036dfd9e7. Change-Id: I5d03dd8776e0d5fbf911793440bdce05cbfb7857 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
-rw-r--r--release-tools/configurations/pkg/qt.tools.qtcreator/meta/installscript.qs6
1 files changed, 3 insertions, 3 deletions
diff --git a/release-tools/configurations/pkg/qt.tools.qtcreator/meta/installscript.qs b/release-tools/configurations/pkg/qt.tools.qtcreator/meta/installscript.qs
index a509c6854..5daf87e4f 100644
--- a/release-tools/configurations/pkg/qt.tools.qtcreator/meta/installscript.qs
+++ b/release-tools/configurations/pkg/qt.tools.qtcreator/meta/installscript.qs
@@ -40,13 +40,13 @@ function Component()
Component.prototype.reactOnTargetDirChange = function(key, value)
{
if (key == "TargetDir") {
- if (installer.value("os") == "win")
+ if (installer.value("os") == "win") {
installer.setValue("QtCreatorInstallerSettingsFile", value + "/%TARGET_INSTALL_DIR%/share/qtcreator/QtProject/QtCreator.ini");
installer.setValue("SDKToolBinary", value + "\\%TARGET_INSTALL_DIR%\\bin\\sdktool.exe");
- else if (installer.value("os") == "mac")
+ } else if (installer.value("os") == "mac") {
installer.setValue("QtCreatorInstallerSettingsFile", value + "/%TARGET_INSTALL_DIR%/Qt Creator.app/Contents/Resources/QtProject/QtCreator.ini");
installer.setValue("SDKToolBinary", value + "/%TARGET_INSTALL_DIR%/Qt Creator.app/Contents/Resources/sdktool");
- else {
+ } else {
installer.setValue("QtCreatorInstallerSettingsFile", value + "/%TARGET_INSTALL_DIR%/share/qtcreator/QtProject/QtCreator.ini");
installer.setValue("SDKToolBinary", value + "/%TARGET_INSTALL_DIR%/bin/sdktool");
}