diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-02 23:03:52 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-02 23:03:52 -0700 |
commit | 86c2f32b19b3f3e293e4ccf6c9bedb4e73eed839 (patch) | |
tree | afcf932d40af2bd8121d92c325339b720c85ec16 | |
parent | Merge branch 'jc/symref' into next (diff) | |
parent | builtin-count-objects: open packs when running -v (diff) | |
download | tgif-86c2f32b19b3f3e293e4ccf6c9bedb4e73eed839.tar.xz |
Merge branch 'jc/count' into next
* jc/count:
builtin-count-objects: open packs when running -v
-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; |