tree: Check for `.git` with case insensitivy
diff --git a/src/tree.c b/src/tree.c
index 6b06dfd..6246ff6 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -57,7 +57,7 @@ static int valid_entry_name(const char *filename)
(*filename != '.' ||
(strcmp(filename, ".") != 0 &&
strcmp(filename, "..") != 0 &&
- strcmp(filename, DOT_GIT) != 0));
+ strcasecmp(filename, DOT_GIT) != 0));
}
static int entry_sort_cmp(const void *a, const void *b)