Merge pull request #463 from sobolevn/improve_assert_keychain_contains_emails

break loop when email found in keyring
pull/468/head^2
Josh Rabinowitz 6 years ago committed by GitHub
commit 05421347ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -596,6 +596,7 @@ function _assert_keychain_contains_emails {
for uid in $gpg_uids; do
if [[ "$uid" == "$email" ]]; then
email_ok=1
break
fi
done
if [[ $email_ok -eq 0 ]]; then

Loading…
Cancel
Save