We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7f4f9c + 73770dd commit 3fec4c9Copy full SHA for 3fec4c9
src/main/java/com/bazel_diff/main.java
@@ -58,7 +58,10 @@ public Integer call() {
58
.map(Path::toString)
59
.collect(Collectors.toSet());
60
FileWriter myWriter = new FileWriter(outputPath);
61
- myWriter.write(String.join(System.lineSeparator(), modifiedFilepaths));
+ for (String line : modifiedFilepaths) {
62
+ myWriter.write(line);
63
+ myWriter.write(System.lineSeparator());
64
+ }
65
myWriter.close();
66
return ExitCode.OK;
67
} catch (IOException | InterruptedException e) {
0 commit comments