diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-26 15:56:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-26 15:56:56 -0400 |
commit | b0174432a0a4842127560af87e1e0cc7b52581c0 (patch) | |
tree | 7070732176a91fadcec09aef9d53770117a03236 | |
parent | 29ed089ccee73925eb34d35f5ebdfb5706a8d7d7 (diff) | |
download | git-remote-gcrypt-b0174432a0a4842127560af87e1e0cc7b52581c0.zip git-remote-gcrypt-b0174432a0a4842127560af87e1e0cc7b52581c0.tar.gz git-remote-gcrypt-b0174432a0a4842127560af87e1e0cc7b52581c0.tar.bz2 |
stop passing --fast-list
For unknown reasons, it makes --list-keys sometimes not show fingerprints
of certian keys.
-rwxr-xr-x | git-remote-gcrypt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-remote-gcrypt b/git-remote-gcrypt index 87db2a1..22f19dd 100755 --- a/git-remote-gcrypt +++ b/git-remote-gcrypt @@ -407,7 +407,7 @@ read_config() for recp_ in $conf_part do - gpg_list=$(gpg --with-colons --fast-list --fingerprint -k "$recp_") + gpg_list=$(gpg --with-colons --fingerprint -k "$recp_") filter_to @r_keyinfo "pub*" "$gpg_list" filter_to @r_keyfpr "fpr*" "$gpg_list" isnull "$r_keyinfo" || isnonnull "${r_keyinfo##*"$Newline"*}" || |