We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_check_call
1 parent 2264307 commit ca8a78dCopy full SHA for ca8a78d
python-setup/auto_install_packages.py
@@ -15,6 +15,8 @@ def _check_call(command, extra_env={}):
15
env = os.environ.copy()
16
env.update(extra_env)
17
subprocess.check_call(command, stdin=subprocess.DEVNULL, env=env)
18
+ sys.stdout.flush()
19
+ sys.stderr.flush()
20
21
22
def _check_output(command, extra_env={}):
0 commit comments