diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-06-14 12:00:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-06-14 12:00:35 +0000 |
commit | e679b4ca18df1f17fb177b49f0426fb8f70c2a9f (patch) | |
tree | 4eedbd86766af04c1ea50521516364adac62bbf4 /git/share/hooks | |
parent | Releasing debian version 20220609-1. (diff) | |
download | open-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')
-rwxr-xr-x | git/share/hooks/post-update.d/irker-notification | 4 |
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 |