Skip to content

Commit

Permalink
python-setup: flush at the end of _check_call
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusWL committed Sep 21, 2022
1 parent 2264307 commit ca8a78d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python-setup/auto_install_packages.py
Expand Up @@ -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={}):
Expand Down

0 comments on commit ca8a78d

Please sign in to comment.