summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTimothy Redaelli <timothy.redaelli@gmail.com>2011-12-23 17:52:11 +0100
committerDan McGee <dan@archlinux.org>2011-12-23 21:39:12 +0100
commit5b749eeee999b5b332ad7545688297a37542b9a5 (patch)
tree99e8944c036dee7bf8268dfbd32231f072d7b680 /scripts
parentd95c04945fc85bcc584026f7fded57dc8724ba6a (diff)
downloadpacman-5b749eeee999b5b332ad7545688297a37542b9a5.tar.gz
pacman-5b749eeee999b5b332ad7545688297a37542b9a5.tar.xz
pacman-key: Add missing quotes
Signed-off-by: Timothy Redaelli <timothy.redaelli@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/pacman-key.sh.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
index ee43dde1..f358c487 100644
--- a/scripts/pacman-key.sh.in
+++ b/scripts/pacman-key.sh.in
@@ -450,9 +450,9 @@ fi
# file, falling back on a hard default
PACMAN_KEYRING_DIR=${PACMAN_KEYRING_DIR:-$(get_from "$CONFIG" "GPGDir" "@sysconfdir@/pacman.d/gnupg")}
-GPG_PACMAN=(gpg --homedir ${PACMAN_KEYRING_DIR} --no-permission-warning)
+GPG_PACMAN=(gpg --homedir "${PACMAN_KEYRING_DIR}" --no-permission-warning)
if [[ -n ${KEYSERVER} ]]; then
- GPG_PACMAN+=(--keyserver ${KEYSERVER})
+ GPG_PACMAN+=(--keyserver "${KEYSERVER}")
fi
# check only a single operation has been given
@@ -492,7 +492,7 @@ fi
(( POPULATE )) && populate_keyring
(( RECEIVE )) && "${GPG_PACMAN[@]}" --recv-keys "${KEYIDS[@]}"
(( REFRESH )) && "${GPG_PACMAN[@]}" --refresh-keys "${KEYIDS[@]}"
-(( VERIFY )) && "${GPG_PACMAN[@]}" --verify $SIGNATURE
+(( VERIFY )) && "${GPG_PACMAN[@]}" --verify "$SIGNATURE"
if (( UPDATEDB )); then
msg "$(gettext "Updating trust database...")"