X-Git-Url: https://git.ctpug.org.za/?p=gitolite-hooks.git;a=blobdiff_plain;f=irker;h=eb4bd1e5960673ada30646c4f6482f09709b5672;hp=ab0b10a55c154e73f0f0088c40f761becb5f8a25;hb=be0a5404034731b70a08addaa0f96b53e3d1b7d3;hpb=a781c740bd0cf1458082dd6da6b962c57c1d3bea diff --git a/irker b/irker index ab0b10a..eb4bd1e 100755 --- a/irker +++ b/irker @@ -1,6 +1,6 @@ #!/bin/bash -IRKERPATH=/home/irker/VE/bin/ +IRKERPATH=/usr/bin/ function help() { echo "Required config settings:" @@ -21,7 +21,7 @@ function notify_irker() { # to get the rev list # This does the wrong thing if the parent of the branch isn't master # but it is kind of correct most of the time - ${IRKERPATH}/irkerhook.py --refname=${refname} \ + ${IRKERPATH}/irkerhook --refname=${refname} \ $(git rev-list $new --not master) elif [ "x$new" = "x0000000000000000000000000000000000000000" ]; then # We're deleting a branch - we need to do the right thing @@ -32,7 +32,7 @@ function notify_irker() { ${IRKERPATH}/irk $channel "$repo: Deleted branch $refname" done else - ${IRKERPATH}/irkerhook.py --refname=${refname} \ + ${IRKERPATH}/irkerhook --refname=${refname} \ $(git rev-list --reverse ${old}..${new}) fi }