Skip to content

Commit 32103d4

Browse files
Fix compilation errors
1 parent 1017692 commit 32103d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacPkgBundler.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ public Path bundle(Map<String, ? super Object> params,
112112
IOUtils.writableOutputDir(outdir);
113113

114114
try {
115-
env = BuildEnv.withAppImageDir(env, prepareAppBundle(params));
116115

117116
prepareConfigFiles(pkg, env);
118117
Path configScript = getConfig_Script(pkg, env);
@@ -121,7 +120,7 @@ public Path bundle(Map<String, ? super Object> params,
121120
}
122121

123122
return createPKG(pkg, env, outdir);
124-
} catch (IOException | PackagerException ex) {
123+
} catch (IOException ex) {
125124
Log.verbose(ex);
126125
throw new PackagerException(ex);
127126
}

0 commit comments

Comments
 (0)