Просмотр исходного кода

SDK NBI Installer:
- Add fix for broken JDK installs from installer

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10218 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

nor..67 12 лет назад
Родитель
Сommit
c2671ab270

+ 1 - 1
nbi/stub/ext/components/products/helloworld/src/org/mycompany/ConfigurationLogic.java

@@ -190,7 +190,7 @@ public class ConfigurationLogic extends ProductConfigurationLogic {
         }
         //normen - JDK install - uses package on OSX
         if (!SystemUtils.isMacOS()) {
-            File javaHome = new File(System.getProperty("java.home"));
+            File javaHome = new File(System.getProperty("java.home")).getParentFile();
             File target = new File(installLocation, "jdk");
             try {
                 FileUtils.copyFile(javaHome, target, true); //FileUtils is one of the NBI core classes, already imported in ConfigurationLogic.java