This commit is contained in:
Samuel Tyler 2026-02-14 22:25:28 +01:00 committed by GitHub
commit 5ce922aa3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 69 additions and 2 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: