Try putting all build output on stdout

This commit is contained in:
Joe Rickerby
2020-11-01 15:16:28 +00:00
parent f51c8dc1e3
commit 152483bcb4
+3
View File
@@ -57,6 +57,9 @@ class DockerContainer:
], ],
stdin=subprocess.PIPE, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
# output the subcommand stderr to our stdout. Avoids ordering
# problems between log messages on stderr and stdout
stderr=sys.stdout,
) )
assert self.process.stdin and self.process.stdout assert self.process.stdin and self.process.stdout