Lea Wiemann <lewiemann@xxxxxxxxx> writes: > cat-file --batch/--batch-check only flushes stdout when the object > exists, but not when it doesn't ("<object> missing"). This makes > bidirectional pipes hang. > > Signed-off-by: Lea Wiemann <LeWiemann@xxxxxxxxx> > --- > builtin-cat-file.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/builtin-cat-file.c b/builtin-cat-file.c > index 200345e..f8b3160 100644 > --- a/builtin-cat-file.c > +++ b/builtin-cat-file.c > @@ -159,6 +159,7 @@ static int batch_one_object(const char *obj_name, int print_contents) > > if (get_sha1(obj_name, sha1)) { > printf("%s missing\n", obj_name); > + fflush(stdout); > return 0; > } > > -- > 1.5.6.rc0.92.g27fd.dirty Ah, good catch. Thanks. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html