diff --git a/sdk/nbi/stub/ext/components/products/helloworld/src/org/mycompany/ConfigurationLogic.java b/sdk/nbi/stub/ext/components/products/helloworld/src/org/mycompany/ConfigurationLogic.java index 8ed320ea7..808c9931c 100644 --- a/sdk/nbi/stub/ext/components/products/helloworld/src/org/mycompany/ConfigurationLogic.java +++ b/sdk/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