diff options
author | Brian Downing <bdowning@lavos.net> | 2007-08-14 08:18:38 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-08-14 22:46:01 -0700 |
commit | 6b06d518caa6ef98cc0efb796713d0a0693895bf (patch) | |
tree | 5c6d995366c0f3f7ec3b50196305a157620d74a8 | |
parent | diff: squelch empty diffs even more (diff) | |
download | tgif-6b06d518caa6ef98cc0efb796713d0a0693895bf.tar.xz |
Add read_cache to builtin-check-attr
We can now read .gitattributes files out of the index, but the index
must be loaded for this to work.
Signed-off-by: Brian Downing <bdowning@lavos.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-check-attr.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/builtin-check-attr.c b/builtin-check-attr.c index 9d77f76ff1..d94973379c 100644 --- a/builtin-check-attr.c +++ b/builtin-check-attr.c @@ -1,4 +1,5 @@ #include "builtin.h" +#include "cache.h" #include "attr.h" #include "quote.h" @@ -10,6 +11,10 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix) struct git_attr_check *check; int cnt, i, doubledash; + if (read_cache() < 0) { + die("invalid cache"); + } + doubledash = -1; for (i = 1; doubledash < 0 && i < argc; i++) { if (!strcmp(argv[i], "--")) |