Skip to content

Commit afaebe9

Browse files
committed
Don't quote :
: isn't special, so there is no need to quote it.
1 parent 4ab5dde commit afaebe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/sys

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fi
5151
### create/find credentials for using with git
5252

5353
if [ -n "$SUDO_USER" ]; then
54-
homedir=$(getent passwd ${SUDO_USER} | cut -d\: -f 6)
54+
homedir=$(getent passwd ${SUDO_USER} | cut -d: -f 6)
5555
git_config_file="${homedir}"/.gitconfig
5656
hostname=$(hostname -f)
5757
# check for user credentials!

0 commit comments

Comments
 (0)