summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bc5d248)
raw | patch | inline | side by side (parent: bc5d248)
author | Junio C Hamano <gitster@pobox.com> | |
Sun, 18 Nov 2007 20:21:17 +0000 (12:21 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 23 Nov 2007 01:05:04 +0000 (17:05 -0800) |
It should run with $GIT_DIR/COMMIT_EDITMSG, not just COMMIT_EDITMSG.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-commit.c | patch | blob | history |
diff --git a/builtin-commit.c b/builtin-commit.c
index 7616dd152fec439e7d8b8bdcb046b1837e2b68ee..cd2f5cad1d3f1e985fcd2dfbc8537008d3cfbcbb 100644 (file)
--- a/builtin-commit.c
+++ b/builtin-commit.c
launch_editor(git_path(commit_editmsg), &sb);
else if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0)
die("could not read commit message\n");
- if (run_hook(index_file, "commit-msg", commit_editmsg))
+ if (run_hook(index_file, "commit-msg", git_path(commit_editmsg)))
exit(1);
stripspace(&sb, 1);
if (sb.len < header_len ||