Skip to content

Commit cc9a8b5

Browse files
author
Charlie Summers
authored
Adjust cleanBuildOutput to more thoroughly clean output (linkedin#214)
1 parent ad9b5d5 commit cc9a8b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hadoop-plugin-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def cleanBuildOutput(String buildOutput) {
6767
] as String[]
6868

6969
for (String lineToRemove : linesToRemove) {
70-
buildOutput = buildOutput.replaceFirst(lineToRemove, "")
70+
buildOutput = buildOutput.replaceAll(lineToRemove, "")
7171
}
7272

7373
int endIndex = buildOutput.lastIndexOf("Total time:")

0 commit comments

Comments
 (0)