Skip to content

Commit

Permalink
add space between paths (#1035)
Browse files Browse the repository at this point in the history
  • Loading branch information
xzel23 authored Nov 26, 2023
1 parent f5eced3 commit 9e9b37e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void execute() {
.map(URI::toString)
.collect(Collectors.toList());
if (!reportPaths.isEmpty()) {
errorMessage += " See the report at: " + String.join(",", reportPaths);
errorMessage += " See the report at: " + String.join(", ", reportPaths);
}
throw new GradleException(errorMessage);
}
Expand Down

0 comments on commit 9e9b37e

Please sign in to comment.