diff options
author | rhatto <rhatto@ratatosk.fluxo.info> | 2014-03-22 16:42:28 -0300 |
---|---|---|
committer | rhatto <rhatto@ratatosk.fluxo.info> | 2014-03-22 16:42:28 -0300 |
commit | 82ec9c59d31a429335d1f953927775a80bb10808 (patch) | |
tree | 350456cd7b25bf21d14fac5f4834d483a27b9171 | |
parent | c77565e1e2ac774659c125b2ca14f18d9f56f0cf (diff) | |
download | keyringer-82ec9c59d31a429335d1f953927775a80bb10808.tar.gz keyringer-82ec9c59d31a429335d1f953927775a80bb10808.tar.bz2 |
Use --recv-keys instead of --refresh-keys and minor text change
-rwxr-xr-x | lib/keyringer/functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/keyringer/functions b/lib/keyringer/functions index 7840b04..e2d23ac 100755 --- a/lib/keyringer/functions +++ b/lib/keyringer/functions @@ -572,7 +572,7 @@ function keyringer_refresh_keys { local recipient="$1" echo "Trying to refresh key $recipient..." - gpg --batch --refresh-keys "$recipient" + gpg --batch --recv-keys "$recipient" } # Check recipient size @@ -671,7 +671,7 @@ function keyringer_check_recipient_key { fi echo "" else - echo "Fatal: no such key $recipient on your OpenPGP keyring." + echo "Fatal: no such key $recipient on your GnuPG keyring." echo "Please retrieve this key yourself or fix the recipient file." exit 1 |