Skip to content

Commit

Permalink
Fixed report file location URL
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed May 11, 2024
1 parent cf879d3 commit a5ce6ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/rife/bld/extension/TestNgOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ protected List<String> executeConstructProcessCommandList() {
}

if (LOGGER.isLoggable(Level.INFO)) {
LOGGER.info(String.format("Report will be saved in file://%s", new File(options.get("-d"))));
LOGGER.info(String.format("Report will be saved in file://%s",
new File(options.get("-d")).toURI().getPath()));
}

return args;
Expand Down

0 comments on commit a5ce6ab

Please sign in to comment.