Code

Add read_cache to builtin-check-attr
authorBrian Downing <bdowning@lavos.net>
Tue, 14 Aug 2007 13:18:38 +0000 (08:18 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 15 Aug 2007 05:46:01 +0000 (22:46 -0700)
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>
builtin-check-attr.c

index 9d77f76ff1230df76278b528ef44d6837edb2741..d94973379cee27c47426b61a13ae0f90508fed9b 100644 (file)
@@ -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], "--"))