Skip to content

Commit

Permalink
Merge pull request #26050 from knutwannheden/fix-docker-build-logging
Browse files Browse the repository at this point in the history
Fix container build logging
  • Loading branch information
gsmet committed Jun 10, 2022
2 parents 924f94d + 0ca82fd commit ff91abc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -163,7 +163,7 @@ public static boolean exec(File directory, Function<InputStream, Runnable> outpu
String... args) {
try {
Process process = startProcess(directory, command, args);
outputFilterFunction.apply(process.getInputStream());
outputFilterFunction.apply(process.getInputStream()).run();
process.waitFor();
return process.exitValue() == 0;
} catch (InterruptedException e) {
Expand Down

0 comments on commit ff91abc

Please sign in to comment.