1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00

archive: force line buffered output to stderr

Otherwise the remote notification that comes with -v option can get
clumped together.

Signed-off-by: Junio C Hamano <junkio@cox.net>
(cherry picked from a675cda60ead41f439b04bc69e0f19ace04e59d3 commit)
This commit is contained in:
Junio C Hamano 2006-09-10 04:16:39 -07:00
parent 326711c168
commit 8142f603b9

View File

@ -238,6 +238,8 @@ int cmd_archive(int argc, const char **argv, const char *prefix)
if (remote)
return run_remote_archiver(remote, argc, argv);
setlinebuf(stderr);
memset(&ar, 0, sizeof(ar));
tree_idx = parse_archive_args(argc, argv, &ar);
if (prefix == NULL)