Skip to content

Commit 811ceb9

Browse files
committed
unbuffered output
1 parent 0a4c23e commit 811ceb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iron/common/compilation/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def run(self) -> bool:
313313
capture_output=True,
314314
text=True,
315315
cwd=self.cwd,
316-
env=self.env,
316+
env={**self.env, 'PYTHONUNBUFFERED': '1'}
317317
)
318318
if 0 != result.returncode:
319319
print("Return code: ", result.returncode)

0 commit comments

Comments
 (0)