aboutsummaryrefslogtreecommitdiff
path: root/bin/gms
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-11-13 00:50:40 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-11-13 00:57:28 +1300
commit4ef2780aeee06c1f727aa36d0610c3562507e996 (patch)
treec9712b66af5b409f294166d07e7b7eff4c07f502 /bin/gms
parentSimplify/correct dmp(1) copying (diff)
downloaddotfiles-4ef2780aeee06c1f727aa36d0610c3562507e996.tar.gz
dotfiles-4ef2780aeee06c1f727aa36d0610c3562507e996.zip
Quote var in param expansion
Diffstat (limited to 'bin/gms')
-rwxr-xr-xbin/gms2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gms b/bin/gms
index 1cc5b0df..01cdaa2f 100755
--- a/bin/gms
+++ b/bin/gms
@@ -20,7 +20,7 @@ uid=$(id -u) || exit
# Iterate through the getmailrc.* files in $GETMAIL if defined, or
# $HOME/.getmail if not
-for rcfile in "${GETMAIL:-$HOME/.getmail}"/getmailrc.* ; do (
+for rcfile in "${GETMAIL:-"$HOME"/.getmail}"/getmailrc.* ; do (
lockdir=${TMPDIR:-/tmp}/getmail.$uid.${rcfile##*/}.lock
mkdir -m 0700 -- "$lockdir" 2>/dev/null || exit
try -n 3 -s 15 getmail --rcfile "$rcfile" "$@"