Skip to content

Commit

Permalink
Fix file name
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Feb 7, 2025
1 parent 3ea5d95 commit cba034a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected Map<String, String> invoke(Path cwd, Path userHome, Collection<String>
for (String goal : goals) {
Path logFile = cwd.resolve(goal + "-build.log").toAbsolutePath();
List<String> mvnArgs = new ArrayList<>(args);
mvnArgs.addAll(List.of("-l", logFile.toString(), goal));
mvnArgs.addAll(List.of("-l", logFile.toString().replace(':', '-'), goal));
int exitCode = invoker.invoke(
parser.parseInvocation(ParserRequest.mvn(mvnArgs, new JLineMessageBuilderFactory())
.cwd(cwd)
Expand Down

0 comments on commit cba034a

Please sign in to comment.