summaryrefslogtreecommitdiffstats
path: root/git/share/hooks/post-update.d/irker-notification
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-06-14 12:00:25 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-06-14 12:00:35 +0000
commite679b4ca18df1f17fb177b49f0426fb8f70c2a9f (patch)
tree4eedbd86766af04c1ea50521516364adac62bbf4 /git/share/hooks/post-update.d/irker-notification
parentReleasing debian version 20220609-1. (diff)
downloadopen-infrastructure-service-tools-e679b4ca18df1f17fb177b49f0426fb8f70c2a9f.tar.xz
open-infrastructure-service-tools-e679b4ca18df1f17fb177b49f0426fb8f70c2a9f.zip
Merging upstream version 20220614.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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