From 363b7817e017b7c7e27a925d766c4d9bacfe4471 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 20 Jun 2006 22:48:23 -0700 Subject: upload-pack: prepare for sideband message support. This does not implement sideband for propagating the status to the downloader yet, but add code to capture the standard error output from the pack-objects process in preparation for sending it off to the client when the protocol extension allows us to do so. Signed-off-by: Junio C Hamano --- pack-objects.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pack-objects.c') diff --git a/pack-objects.c b/pack-objects.c index 179560f2bd..7a8c16c317 100644 --- a/pack-objects.c +++ b/pack-objects.c @@ -1221,6 +1221,10 @@ int main(int argc, char **argv) local = 1; continue; } + if (!strcmp("--progress", arg)) { + progress = 1; + continue; + } if (!strcmp("--incremental", arg)) { incremental = 1; continue; -- cgit v1.2.3