Skip to content

Commit

Permalink
Fix jacocoAgent
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Dec 30, 2023
1 parent f1e4730 commit 8cefc26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private List<String> getInitialGoals() {

goals.add("-Dsurefire.version=" + surefireVersion);

String jacocoAgent = System.getProperty("jacoco.agent", "");
String jacocoAgent = System.getProperty("jacoco.agent", "").replace("\"", "").replace("\\\\", "\\");
goals.add("-Djacoco.agent=" + jacocoAgent);
goals.add("-nsu");

Expand Down

0 comments on commit 8cefc26

Please sign in to comment.