Skip to content

Commit

Permalink
Add read_cache to builtin-check-attr
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Brian Downing authored and Junio C Hamano committed Aug 15, 2007
1 parent 6d2d9e8 commit 6b06d51
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions builtin-check-attr.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "builtin.h"
#include "cache.h"
#include "attr.h"
#include "quote.h"

Expand All @@ -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], "--"))
Expand Down

0 comments on commit 6b06d51

Please sign in to comment.