summaryrefslogtreecommitdiff
path: root/bin/gitano-post-receive-hook.in
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-09-01 10:22:55 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-09-01 10:22:55 +0100
commitf12458c7194b61d66621fe1731c6bc21d54d18c4 (patch)
treeecf22c58c7790580e7e2cd82a585f702bd59d748 /bin/gitano-post-receive-hook.in
parentda2dc29bb45753686f1ca2aed548e9216b83c7e8 (diff)
downloadgitano-f12458c7194b61d66621fe1731c6bc21d54d18c4.tar.gz
SUPPLE: Reorder run_hook() args for neatness
Diffstat (limited to 'bin/gitano-post-receive-hook.in')
-rw-r--r--bin/gitano-post-receive-hook.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gitano-post-receive-hook.in b/bin/gitano-post-receive-hook.in
index 797ce26..e56a778 100644
--- a/bin/gitano-post-receive-hook.in
+++ b/bin/gitano-post-receive-hook.in
@@ -131,7 +131,7 @@ if repo:uses_hook("post-receive") then
gitano.log.debug("Configuring for post-receive hook")
gitano.actions.set_supple_globals("post-receive")
gitano.log.info("Running repository post-receive hook")
- local ok, msg = gitano.supple.run_hook(repo, "post-receive", updates)
+ local ok, msg = gitano.supple.run_hook("post-receive", repo, updates)
if not ok then
gitano.log.crit(msg or "No reason given, but errored somehow.")
end