We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1d2f4b commit b3d9b8dCopy full SHA for b3d9b8d
git/cmd.py
@@ -794,7 +794,7 @@ def _kill_process(pid):
794
else:
795
max_chunk_size = max_chunk_size if max_chunk_size and max_chunk_size > 0 else io.DEFAULT_BUFFER_SIZE
796
stream_copy(proc.stdout, output_stream, max_chunk_size)
797
- stdout_value = output_stream
+ stdout_value = proc.stdout.read()
798
stderr_value = proc.stderr.read()
799
# strip trailing "\n"
800
if stderr_value.endswith(b"\n"):
0 commit comments