summaryrefslogtreecommitdiff
path: root/receive-pack.c
diff options
context:
space:
mode:
Diffstat (limited to 'receive-pack.c')
-rw-r--r--receive-pack.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/receive-pack.c b/receive-pack.c
index dda9854..d39aeba 100644
--- a/receive-pack.c
+++ b/receive-pack.c
@@ -206,12 +206,10 @@ static void run_update_post_hook(struct command *cmd)
static void execute_commands(void)
{
struct command *cmd = commands;
-
while (cmd) {
update(cmd);
cmd = cmd->next;
}
- run_update_post_hook(commands);
}
static void read_head_info(void)
@@ -456,6 +454,7 @@ int main(int argc, char **argv)
unlink(pack_lockfile);
if (report_status)
report(unpack_status);
+ run_update_post_hook(commands);
}
return 0;
}