diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-14 05:08:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-14 11:59:26 +0000 |
commit | 9608d919189ea73dc001ea97062d89b49991d811 (patch) | |
tree | 5e4ce56720a2d12f77f11746deb53a60c6836bfd /git/share | |
parent | Using read -r to not mangle backslashes in git-tools. (diff) | |
download | service-tools-9608d919189ea73dc001ea97062d89b49991d811.tar.xz service-tools-9608d919189ea73dc001ea97062d89b49991d811.zip |
Adding quotes arround some variables in git-tools to prevent globbing and word splitting.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | git/share/hooks/post-update.d/irker-notification | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/share/hooks/post-update.d/irker-notification b/git/share/hooks/post-update.d/irker-notification index aae89e6..7c712db 100755 --- a/git/share/hooks/post-update.d/irker-notification +++ b/git/share/hooks/post-update.d/irker-notification @@ -30,5 +30,5 @@ echo "sending IRC notification" 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 |