Skip to content

Commit

Permalink
Process arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
tvallin committed Jan 2, 2025
1 parent 180afa7 commit 3f4b271
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,9 @@ protected List<String> command(List<String> opts, List<String> args) {
.append("--jvm", opts.stream()
.map(option -> String.format("'%s'", option))
.collect(Collectors.joining(" ")))
.append(args)
.append(args.stream()
.map(argument -> String.format("'%s'", argument))
.collect(Collectors.joining(" ")))
.command();
}
return new CommandBuilder("target/" + finalName + "-jri/bin/start")
Expand Down

0 comments on commit 3f4b271

Please sign in to comment.