Commit 93c071ac by Kevin Saul

repo: ignore missing 'safe.directory' config during ownership checks

parent dd21e20c
......@@ -521,6 +521,9 @@ static int validate_ownership_config(bool *is_safe, const char *path)
validate_ownership_cb,
&ownership_data);
if (error == GIT_ENOTFOUND)
error = 0;
git_config_free(config);
git_str_dispose(&ownership_data.tmp);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment