diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-01 02:43:59 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-01 02:43:59 +0100 |
commit | ed096c4a23476810831e12d2e9227403c21bd774 (patch) | |
tree | 7a5173cf1d2eed820f92a4e30e85713c0352e55b /http-push.c | |
parent | Merge branch 'jk/signal-cleanup' (diff) | |
parent | Windows: Revert to default paths and convert them by RUNTIME_PREFIX (diff) | |
download | git-ed096c4a23476810831e12d2e9227403c21bd774.tar.xz git-ed096c4a23476810831e12d2e9227403c21bd774.zip |
Merge branch 'sp/runtime-prefix'
* sp/runtime-prefix:
Windows: Revert to default paths and convert them by RUNTIME_PREFIX
Compute prefix at runtime if RUNTIME_PREFIX is set
Modify setup_path() to only add git_exec_path() to PATH
Add calls to git_extract_argv0_path() in programs that call git_config_*
git_extract_argv0_path(): Move check for valid argv0 from caller to callee
Refactor git_set_argv0_path() to git_extract_argv0_path()
Move computation of absolute paths from Makefile to runtime (in preparation for RUNTIME_PREFIX)
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/http-push.c b/http-push.c index 53c14141e0..18d81acd1b 100644 --- a/http-push.c +++ b/http-push.c @@ -2196,6 +2196,8 @@ int main(int argc, char **argv) struct ref *ref; char *rewritten_url = NULL; + git_extract_argv0_path(argv[0]); + setup_git_directory(); remote = xcalloc(sizeof(*remote), 1); |