Commit 9f09f290 by Carlos Martín Nieto

sysdir: don't guess the paths again when $PATH is specified

We should replace it with whatever the user set, not start again.
parent 410855fc
...@@ -171,7 +171,7 @@ int git_sysdir_set(git_sysdir_t which, const char *search_path) ...@@ -171,7 +171,7 @@ int git_sysdir_set(git_sysdir_t which, const char *search_path)
expand_path = strstr(search_path, PATH_MAGIC); expand_path = strstr(search_path, PATH_MAGIC);
/* reset the default if this path has been cleared */ /* reset the default if this path has been cleared */
if (!search_path || expand_path) if (!search_path)
git_sysdir__dirs[which].guess(&git_sysdir__dirs[which].buf); git_sysdir__dirs[which].guess(&git_sysdir__dirs[which].buf);
/* if $PATH is not referenced, then just set the path */ /* if $PATH is not referenced, then just set the path */
......
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