summaryrefslogtreecommitdiffstats
path: root/git/bin/git-whoami
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2022-06-14 05:08:32 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2022-06-14 11:59:26 +0000
commit9608d919189ea73dc001ea97062d89b49991d811 (patch)
tree5e4ce56720a2d12f77f11746deb53a60c6836bfd /git/bin/git-whoami
parentUsing read -r to not mangle backslashes in git-tools. (diff)
downloadservice-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 'git/bin/git-whoami')
-rwxr-xr-xgit/bin/git-whoami2
1 files changed, 1 insertions, 1 deletions
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)}