Skip to content

Commit 8cefc26

Browse files
committed
Fix jacocoAgent
1 parent f1e4730 commit 8cefc26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

surefire-its/src/test/java/org/apache/maven/surefire/its/fixture/SurefireLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private List<String> getInitialGoals() {
7979

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

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

0 commit comments

Comments
 (0)