commit 590eefe913c9c098a6f771014fdf5ffe49f58c67 from: Stefan Sperling date: Wed Aug 07 14:19:40 2024 UTC 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" commit - ef3a5d525aa3e58dc124c6186d48731e5696e962 commit + 590eefe913c9c098a6f771014fdf5ffe49f58c67 blob - 01ee6087b16167393b859e94a1c702f7c64af765 blob + 8788918701c2f2df8e6513ba34076a4f7d493f04 --- 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,