Code

Merge branch 'jc/skip-count'
[git.git] / builtin-repo-config.c
index a7ab4cee58fcd316497d10a766602e9fbd577998..90633119d4ae873ed30889e93dbb4307af0ae0d1 100644 (file)
@@ -66,10 +66,10 @@ static int get_value(const char* key_, const char* regex_)
        char *global = NULL, *repo_config = NULL;
        const char *local;
 
-       local = getenv("GIT_CONFIG");
+       local = getenv(CONFIG_ENVIRONMENT);
        if (!local) {
                const char *home = getenv("HOME");
-               local = getenv("GIT_CONFIG_LOCAL");
+               local = getenv(CONFIG_LOCAL_ENVIRONMENT);
                if (!local)
                        local = repo_config = xstrdup(git_path("config"));
                if (home)