diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-02 23:03:15 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-02 23:03:15 -0700 |
commit | 80fe7d2b54b1aebde6c067694cdbf3ba40ad0c39 (patch) | |
tree | e2e722191376109cfa2912116ac73354d7d9d7a2 /builtin-count.c | |
parent | builtin-count-objects: make it official. (diff) | |
download | tgif-80fe7d2b54b1aebde6c067694cdbf3ba40ad0c39.tar.xz |
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 <junkio@cox.net>
Diffstat (limited to 'builtin-count.c')
-rw-r--r-- | builtin-count.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin-count.c b/builtin-count.c index 0256369d5b..5ee72df247 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; |