fix code signing but/error on osx export (#2614)

This commit is contained in:
Ben Fry
2014-07-29 19:49:45 -04:00
parent 222a60fced
commit 514385835e
3 changed files with 9 additions and 1 deletions

View File

@@ -1216,7 +1216,7 @@ public class JavaBuild {
File jdkFolder = new File(Base.getJavaHome(), "../../..");
String jdkFolderName = jdkFolder.getCanonicalFile().getName();
jvmRuntime = "<key>JVMRuntime</key>\n <string>" + jdkFolderName + "</string>";
jdkPath = new File(dotAppFolder, "Contents/PlugIns/" + jdkFolderName + ".jdk").getAbsolutePath();
jdkPath = new File(dotAppFolder, "Contents/PlugIns/" + jdkFolderName).getAbsolutePath();
}
File contentsFolder = new File(dotAppFolder, "Contents");