aboutsummaryrefslogtreecommitdiff
path: root/builtin-tag.c
diff options
context:
space:
mode:
authorPierre Habouzit <madcoder@debian.org>2007-11-26 09:59:27 +0100
committerJunio C Hamano <gitster@pobox.com>2007-11-26 09:13:17 -0800
commit8babab95af7c01d9ea75c97ee0df40e5a2170b83 (patch)
tree1d0716d42ba6e7ae89cde3d2035484b33dd41fee /builtin-tag.c
parentb468f0ce4881bf42ffc820b1cddad67dad17fd80 (diff)
downloadgit-8babab95af7c01d9ea75c97ee0df40e5a2170b83.tar.gz
git-8babab95af7c01d9ea75c97ee0df40e5a2170b83.tar.xz
builtin-commit.c: export GIT_INDEX_FILE for launch_editor as well.
The editor program to let the user edit the log message used to get GIT_INDEX_FILE environment variable pointing at the right file, but this was lost when git-commit was rewritten in C. Signed-off-by: Pierre Habouzit <madcoder@debian.org> Acked-by: Kristian Høgsberg <krh@redhat.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-tag.c')
-rw-r--r--builtin-tag.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-tag.c b/builtin-tag.c
index 566b9d186..7626da3f4 100644
--- a/builtin-tag.c
+++ b/builtin-tag.c
@@ -17,7 +17,7 @@ static const char builtin_tag_usage[] =
static char signingkey[1000];
-void launch_editor(const char *path, struct strbuf *buffer)
+void launch_editor(const char *path, struct strbuf *buffer, const char *const *env)
{
const char *editor, *terminal;
@@ -43,7 +43,7 @@ void launch_editor(const char *path, struct strbuf *buffer)
if (strcmp(editor, ":")) {
const char *args[] = { editor, path, NULL };
- if (run_command_v_opt(args, 0))
+ if (run_command_v_opt_cd_env(args, 0, NULL, env))
die("There was a problem with the editor %s.", editor);
}
@@ -312,7 +312,7 @@ static void create_tag(const unsigned char *object, const char *tag,
write_or_die(fd, tag_template, strlen(tag_template));
close(fd);
- launch_editor(path, buf);
+ launch_editor(path, buf, NULL);
unlink(path);
free(path);