From 80fe7d2b54b1aebde6c067694cdbf3ba40ad0c39 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 2 May 2006 23:03:15 -0700 Subject: [PATCH] builtin-count-objects: open packs when running -v Otherwise we would report absolutely no objects in a fully packed repository. Signed-off-by: Junio C Hamano --- builtin-count.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin-count.c b/builtin-count.c index 0256369d..5ee72df2 100644 --- a/builtin-count.c +++ b/builtin-count.c @@ -105,6 +105,8 @@ int cmd_count_objects(int ac, const char **av, char **ep) } if (verbose) { struct packed_git *p; + if (!packed_git) + prepare_packed_git(); for (p = packed_git; p; p = p->next) { if (!p->pack_local) continue; -- 2.11.0