From f92c2b1fd5e0f79a1ad01c8ef32da96d7060d5fb Mon Sep 17 00:00:00 2001 From: nik Date: Tue, 21 Jul 2015 10:49:35 +0300 Subject: [PATCH] fixed idea.system.selector property for idea*.exe in community edition (IDEA-142646, IDEA-142725) --- build/groovy/ProductProperties.groovy | 1 - build/scripts/dist.gant | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/build/groovy/ProductProperties.groovy b/build/groovy/ProductProperties.groovy index 837061832536..e10550e142da 100644 --- a/build/groovy/ProductProperties.groovy +++ b/build/groovy/ProductProperties.groovy @@ -33,7 +33,6 @@ public abstract class ProductProperties { abstract def String systemSelector() - String exe_selector = null String exe_launcher_properties String exe64_launcher_properties String platformPrefix = null diff --git a/build/scripts/dist.gant b/build/scripts/dist.gant index 549e21090bda..9a6a4ad6f468 100644 --- a/build/scripts/dist.gant +++ b/build/scripts/dist.gant @@ -228,9 +228,9 @@ private layoutWin(Map args, String home, Paths paths) { List resourcePaths = ["$home/${appInfoModulePath}/src", "$home/platform/icons/src"] buildWinLauncher(home, "$home/bin/WinLauncher/WinLauncher.exe", "$target/bin/${name}.exe", appInfoFile(), - productProperties.exe_launcher_properties, productProperties.exe_selector, resourcePaths) + productProperties.exe_launcher_properties, productProperties.systemSelector(), resourcePaths) buildWinLauncher(home, "$home/bin/WinLauncher/WinLauncher64.exe", "$target/bin/${name}64.exe", appInfoFile(), - productProperties.exe64_launcher_properties, productProperties.exe_selector, resourcePaths) + productProperties.exe64_launcher_properties, productProperties.systemSelector(), resourcePaths) productProperties.customWinLayout(target) }