Remove unused build output buffer (#4786)

* Remove unused build output buffer

* Update proc.py

* Update proc.py

---------

Co-authored-by: Ivan Kravets <me@ikravets.com>
This commit is contained in:
Ryan Govostes
2023-11-16 09:59:30 -08:00
committed by GitHub
parent 540465291a
commit f70e6d50c6

View File

@ -69,7 +69,7 @@ class BuildAsyncPipe(AsyncPipeBase):
print_immediately = False
for char in iter(lambda: self._pipe_reader.read(1), ""):
self._buffer += char
# self._buffer += char
if line and char.strip() and line[-3:] == (char * 3):
print_immediately = True