Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerivec committed Oct 29, 2024
1 parent ab326a6 commit 5f26b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def subprocess_run_verbose(command: list[str], prefix: str) -> None:
result = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

with result.stdout:
for line in iter(result.stdout, b""):
for line in iter(result.stdout.readline, b""):
LOGGER.info("[%s] %r", prefix, line.decode("utf-8").strip())

result_returncode = result.wait()
Expand Down

0 comments on commit 5f26b02

Please sign in to comment.