diff options
Diffstat (limited to '')
-rwxr-xr-x | git/bin/git-checkout-branches | 2 | ||||
-rwxr-xr-x | git/bin/git-whoami | 2 | ||||
-rwxr-xr-x | git/share/hooks/post-update.d/irker-notification | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/git/bin/git-checkout-branches b/git/bin/git-checkout-branches index c0c586c..220386f 100755 --- a/git/bin/git-checkout-branches +++ b/git/bin/git-checkout-branches @@ -29,7 +29,7 @@ do BRANCH="$(echo "${REMOTE_BRANCH}" | cut -d/ -f 2-)" case "${BRANCH}" in - HEAD|${CURRENT_BRANCH}) + HEAD|"${CURRENT_BRANCH}") continue ;; esac diff --git a/git/bin/git-whoami b/git/bin/git-whoami index 9cab9bc..bf1645d 100755 --- a/git/bin/git-whoami +++ b/git/bin/git-whoami @@ -14,7 +14,7 @@ get_email() { } get_name() { - git config user.name || getent passwd $(id -un) | cut -d : -f 5 | cut -d , -f 1 + git config user.name || getent passwd "$(id -un)" | cut -d : -f 5 | cut -d , -f 1 } : ${GIT_AUTHOR_NAME=$(get_name)} 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 |