From 369e564174bfdd592d64a027bebc3f3f41ee8f11 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 3 Jul 2015 15:37:29 +0200 Subject: fix(cmd): don't open stdout when fetching This allows us to use the main thread to parse stderr to get progress, and resolve assertion failures hopefully once and for all. Relates to #301 --- git/test/fixtures/cat_file.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 git/test/fixtures/cat_file.py (limited to 'git/test/fixtures') diff --git a/git/test/fixtures/cat_file.py b/git/test/fixtures/cat_file.py new file mode 100644 index 00000000..2f1b915a --- /dev/null +++ b/git/test/fixtures/cat_file.py @@ -0,0 +1,5 @@ +import sys + +for line in open(sys.argv[1]).readlines(): + sys.stdout.write(line) + sys.stderr.write(line) -- cgit v1.2.3