Fix syntax errors
[gitolite-hooks.git] / irker
diff --git a/irker b/irker
index ab0b10a55c154e73f0f0088c40f761becb5f8a25..89c9603e121cc4becceefd83d70d8cb064276af9 100755 (executable)
--- a/irker
+++ b/irker
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-IRKERPATH=/home/irker/VE/bin/
+IRKERPATH=/usr/bin/
 
-function help() {
+function help_irker() {
   echo "Required config settings:"
   echo "  git config irker.channels 'channel1 channel2 ..'"
   echo "  git config irker.project 'Project name'"
@@ -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,19 +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
 }
-
-channels=$(git config --get irker.channels)
-
-while read line; do
-  set -- $line
-  if [ -n "$channels" ]; then
-      notify_irker $*
-  fi
-  RET=$?
-done
-
-exit $RET