python-setup: flush at the end of _check_call

This commit is contained in:
Rasmus Wriedt Larsen
2022-09-21 10:02:51 +02:00
parent 2264307214
commit ca8a78d5f3

View File

@@ -15,6 +15,8 @@ def _check_call(command, extra_env={}):
env = os.environ.copy()
env.update(extra_env)
subprocess.check_call(command, stdin=subprocess.DEVNULL, env=env)
sys.stdout.flush()
sys.stderr.flush()
def _check_output(command, extra_env={}):