Scrap the stderr->stdout redirect (we don't seem to need it)

Let's keep an eye on this and if we see output outside of the fold
groups we can add it back
This commit is contained in:
Joe Rickerby
2020-11-24 19:04:27 +00:00
parent 27bda4fa64
commit c065e3ce2d
3 changed files with 3 additions and 6 deletions
-1
View File
@@ -220,7 +220,6 @@ def main() -> None:
# Python is buffering by default when running on the CI platforms, giving problems interleaving subprocess call output with unflushed calls to 'print'
sys.stdout = Unbuffered(sys.stdout) # type: ignore
# sys.stderr = Unbuffered(sys.stderr) # type: ignore
print_preamble(platform, build_options)