Skip to content

Commit

Permalink
builtin-am: invoke post-applypatch hook
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Paul Tan authored and Junio C Hamano committed Aug 5, 2015
1 parent 6c24c5c commit 7088f80
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions builtin/am.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 7088f80

Please sign in to comment.