summaryrefslogtreecommitdiffstats
path: root/git/share/hooks/post-update.d/irker-notification
diff options
context:
space:
mode:
Diffstat (limited to 'git/share/hooks/post-update.d/irker-notification')
-rwxr-xr-xgit/share/hooks/post-update.d/irker-notification4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/share/hooks/post-update.d/irker-notification b/git/share/hooks/post-update.d/irker-notification
index 1ad6f54..7c712db 100755
--- a/git/share/hooks/post-update.d/irker-notification
+++ b/git/share/hooks/post-update.d/irker-notification
@@ -28,7 +28,7 @@ fi
echo "sending IRC notification"
-while read OLD NEW REFNAME
+while read -r OLD NEW REFNAME
do
- irkerhook --refname=${REFNAME} $(git rev-list --reverse ${OLD}..${NEW})
+ irkerhook --refname="${REFNAME}" "$(git rev-list --reverse "${OLD}".."${NEW}")"
done