Skip to content

Commit

Permalink
Fix custom options
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Jan 25, 2024
1 parent c2967bf commit 0e6aa08
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,6 @@ public void runJpackage() throws Exception {
if (getCopyright().isPresent()) {
e.args("--copyright", getCopyright().get());
}
for (String option : getOptions().get()) {
e.args(option);
}
for (String javaOption : getJavaOptions().get()) {
e.args("--java-options", javaOption);
}
Expand Down Expand Up @@ -202,6 +199,9 @@ public void runJpackage() throws Exception {
"--dest",
getDestination().get().getAsFile().getPath()
);
for (String option : getOptions().get()) {
e.args(option);
}
})
);

Expand Down

0 comments on commit 0e6aa08

Please sign in to comment.