Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> --- builtin/check-attr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/builtin/check-attr.c b/builtin/check-attr.c index 91444dc0448..bf05e7e93ca 100644 --- a/builtin/check-attr.c +++ b/builtin/check-attr.c @@ -4,6 +4,7 @@ #include "attr.h" #include "quote.h" #include "parse-options.h" +#include "repository.h" static int all_attrs; static int cached_attrs; @@ -115,9 +116,7 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix) argc = parse_options(argc, argv, prefix, check_attr_options, check_attr_usage, PARSE_OPT_KEEP_DASHDASH); - if (read_cache() < 0) { - die("invalid cache"); - } + repo_read_index_or_die(the_repository); if (cached_attrs) git_attr_set_direction(GIT_ATTR_INDEX, NULL); -- 2.17.0.582.gccdcbd54c44.dirty