We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5e84c6 commit 3e7451bCopy full SHA for 3e7451b
src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/model/MacApplication.java
@@ -49,7 +49,11 @@ default DottedVersion shortVersion() {
49
50
@Override
51
default Path appImageDirName() {
52
- return Path.of(Application.super.appImageDirName().toString() + ".app");
+ if (isRuntime()) {
53
+ return Application.super.appImageDirName();
54
+ } else {
55
+ return Path.of(Application.super.appImageDirName().toString() + ".app");
56
+ }
57
}
58
59
default boolean sign() {
0 commit comments