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 c0594c5 commit 8332c11Copy full SHA for 8332c11
1 file changed
buildSrc/src/main/java/com/github/stickerifier/stickerify/JlinkTask.java
@@ -73,8 +73,7 @@ public void createJre() {
73
var result = getExec().exec(execSpec -> {
74
execSpec.setIgnoreExitValue(true);
75
76
- execSpec.setCommandLine(jlink.getAbsolutePath());
77
- execSpec.args(getOptions().get());
+ execSpec.commandLine(jlink.getAbsolutePath(), getOptions().get());
78
79
if (getIncludeModulePath().get()) {
80
execSpec.args("--module-path", jmods.getAbsolutePath());
0 commit comments