diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2012-06-18 16:46:26 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-01-04 21:49:38 +1000 |
commit | 49c5f515e91b2978f951634d6118ff58aa64b1de (patch) | |
tree | f969d44759da17900ec9f612bb90d8988ba869a4 /scripts/pacman-key.sh.in | |
parent | 09295f7e40a990971b81c3ebfea474bae873c223 (diff) | |
download | pacman-49c5f515e91b2978f951634d6118ff58aa64b1de.tar.xz |
pacman-key: reduce verbosity of --populate
Do not bother the user with gpg's verbose output.
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/pacman-key.sh.in')
-rw-r--r-- | scripts/pacman-key.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in index 9561c7f2..8f75e2fd 100644 --- a/scripts/pacman-key.sh.in +++ b/scripts/pacman-key.sh.in @@ -277,7 +277,7 @@ populate_keyring() { # Add keys from requested keyrings for keyring in "${KEYRINGIDS[@]}"; do msg "$(gettext "Appending keys from %s.gpg...")" "$keyring" - "${GPG_PACMAN[@]}" --import "${KEYRING_IMPORT_DIR}/${keyring}.gpg" + "${GPG_PACMAN[@]}" --quiet --import "${KEYRING_IMPORT_DIR}/${keyring}.gpg" done # Read the trusted key IDs to an array. Because this is an ownertrust |