Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]>
---
wt-status.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/wt-status.c b/wt-status.c
index 0375484962..5c12bb6ae3 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -1067,6 +1067,8 @@ static char *read_line_from_git_path(const char *filename)
struct strbuf buf = STRBUF_INIT;
FILE *fp = fopen(git_path("%s", filename), "r");
if (!fp) {
+ if (errno != ENOENT)
+ warn_on_inaccessible(git_path("%s", filename));
strbuf_release(&buf);
return NULL;
}
--
2.11.0.157.gd943d85