diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-11-09 11:34:07 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-09 21:45:01 -0800 |
commit | 354e6534c1569d0d23937add8e7b55bf87bbaf20 (patch) | |
tree | e209ad157a72348fc7a715f08e0030089c347bb8 /setup.c | |
parent | 2729cadca22dce2b5bb994581c45a6a71daf7998 (diff) | |
download | git-354e6534c1569d0d23937add8e7b55bf87bbaf20.tar.gz |
builtin-blame: set up the work_tree before the first file access
We check in cmd_blame() if the specified path is there, but we
failed to set up the working tree before that.
While at it, make setup_work_tree() just return if it was run
before.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -208,12 +208,18 @@ static const char *set_work_tree(const char *dir) void setup_work_tree(void) { - const char *work_tree = get_git_work_tree(); - const char *git_dir = get_git_dir(); + const char *work_tree, *git_dir; + static int initialized = 0; + + if (initialized) + return; + work_tree = get_git_work_tree(); + git_dir = get_git_dir(); if (!is_absolute_path(git_dir)) set_git_dir(make_absolute_path(git_dir)); if (!work_tree || chdir(work_tree)) die("This operation must be run in a work tree"); + initialized = 1; } /* |