[pacman-dev] [PATCH] pacman-key: Add missing quotes

Timothy Redaelli tredaelli at archlinux.info
Fri Dec 23 11:52:11 EST 2011


From: Timothy Redaelli <timothy.redaelli at gmail.com>

Signed-off-by: Timothy Redaelli <timothy.redaelli at gmail.com>
---
 scripts/pacman-key.sh.in |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
index e0f48f5..689dc56 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...")"
-- 
1.7.8.1



More information about the pacman-dev mailing list