post-receive-delivery: add a deliver command master
authorOlivier Matz <zer0@droids-corp.org>
Tue, 19 Feb 2013 10:05:33 +0000 (11:05 +0100)
committerOlivier Matz <zer0@droids-corp.org>
Tue, 19 Feb 2013 10:24:18 +0000 (11:24 +0100)
Signed-off-by: Olivier Matz <zer0@droids-corp.org>
server/post-receive-delivery

index 4726561..096ff87 100755 (executable)
@@ -8,7 +8,8 @@
 #
 # This hook clone and pull the repoditory each time a commit is pushed
 # in the tree. Each branch will be delivered in
-# ${GIT_DELIVER_DIRECTORY}/branch.
+# ${GIT_DELIVER_DIRECTORY}/branch. If ${GIT_DELIVER_COMMAND} is set,
+# this command will be executed in the delivery directory.
 
 
 # ---------------------------- Functions
@@ -60,6 +61,11 @@ generate_delivery()
                unset GIT_DIR
                git pull --rebase
        fi
+
+       if [ ! -z "${GIT_DELIVER_COMMAND}" ]; then
+               cd ${dstdir}
+               ${GIT_DELIVER_COMMAND}
+       fi
 }
 
 # ---------------------------- main()