fixed idea.system.selector property for idea*.exe in community edition (IDEA-142646, IDEA-142725)

This commit is contained in:
nik
2015-07-21 10:50:10 +03:00
parent d82eafbaad
commit f92c2b1fd5
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -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
+2 -2
View File
@@ -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)
}