Flush stdout before bootstrap

This commit is contained in:
Samuel Tyler 2025-10-15 15:01:17 +11:00 committed by Samuel Tyler
parent 3be90c7afd
commit ffda41f38a
No known key found for this signature in database
GPG key ID: EB5091A5C77E8DC4
3 changed files with 5 additions and 1 deletions

View file

@ -19,6 +19,9 @@ def run(*args, cleanup=None, **kwargs):
if kwargs.pop('verbose', False):
print(arguments)
sys.stdout.flush()
sys.stderr.flush()
try:
return subprocess.run(arguments, check=True, **kwargs)
except subprocess.CalledProcessError: