summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorPaul Tan <pyokagan@gmail.com>2015-08-04 13:51:58 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-05 05:02:11 (GMT)
commit7088f8078a89d62733a12878f944d48365716f53 (patch)
tree2027ff90298705338c906e75319c3aa60ba4c2f0 /builtin
parent6c24c5c0a5f761f698f61a7a2c84d26a3589ef6b (diff)
downloadgit-7088f8078a89d62733a12878f944d48365716f53.zip
git-7088f8078a89d62733a12878f944d48365716f53.tar.gz
git-7088f8078a89d62733a12878f944d48365716f53.tar.bz2
builtin-am: invoke post-applypatch hook
Since d1c5f2a (Add git-am, applymbox replacement., 2005-10-07), git-am.sh will invoke the post-applypatch hook after the patch is applied and a commit is made. The exit code of the hook is ignored. Re-implement this in builtin/am.c. Signed-off-by: Paul Tan <pyokagan@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/am.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin/am.c b/builtin/am.c
index 7a7da94..c313e58 100644
--- a/builtin/am.c
+++ b/builtin/am.c
@@ -1378,6 +1378,8 @@ static void do_commit(const struct am_state *state)
fclose(fp);
}
+ run_hook_le(NULL, "post-applypatch", NULL);
+
strbuf_release(&sb);
}