Skip to content

Commit

Permalink
update path to jlink executable
Browse files Browse the repository at this point in the history
  • Loading branch information
tvallin committed Nov 15, 2024
1 parent b9271c6 commit 8d91092
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ private static final class JlinkRunner extends ProcessRunner {
protected List<String> command(List<String> opts, List<String> args) {
Objects.requireNonNull(finalName, "finalName is null");
if (IS_WINDOWS) {
return new CommandBuilder("& target\\" + finalName + "-jri\\bin\\start.ps1")
return new CommandBuilder("& .\\target\\" + finalName + "-jri\\bin\\start.ps1")
.append("--jvm", String.join(" ", opts))
.append(args)
.command();
Expand Down

0 comments on commit 8d91092

Please sign in to comment.