Commit Diff
- Commit:
590eefe913c9c098a6f771014fdf5ffe49f58c67
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
- Message:
- only warn about missing repositories in gotd startup as was intended This was broken in commit 4b3827cd43394b89d2af822dcd1d9a9179c1ee10 "make gitwrapper ignore 'permission denied' for repository paths"
- Actions:
- Patch | Tree
--- gotd/parse.y +++ gotd/parse.y @@ -699,8 +699,7 @@ repoopts1 : PATH STRING { * gotd regardless. */ if (errno == ENOENT) { - yyerror("realpath %s: %s", $2, - strerror(errno)); + log_warn("%s", $2); } else if (errno != EACCES || gotd_proc_id != PROC_GITWRAPPER) { yyerror("realpath %s: %s", $2,