diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-09-08 12:09:44 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-14 07:30:12 +0200 |
commit | 92b2cb6c698e07ed49f7cb997df0e3824a65d49e (patch) | |
tree | 25cab4256566df1f8514b99c11329f00c24c2617 | |
parent | verify-sig.eclass: Fix handling multiple/duplicate signatures (diff) | |
download | gentoo-92b2cb6c698e07ed49f7cb997df0e3824a65d49e.tar.gz gentoo-92b2cb6c698e07ed49f7cb997df0e3824a65d49e.tar.bz2 gentoo-92b2cb6c698e07ed49f7cb997df0e3824a65d49e.zip |
verify-sig.eclass: Fix list formatting for VERIFY_SIG_METHOD
Thanks to ulm for reporting.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | eclass/verify-sig.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/verify-sig.eclass b/eclass/verify-sig.eclass index 010361bfbc98..49557b633c87 100644 --- a/eclass/verify-sig.eclass +++ b/eclass/verify-sig.eclass @@ -55,8 +55,8 @@ IUSE="verify-sig" # @DESCRIPTION: # Signature verification method to use. The allowed value are: # -# - openpgp -- verify PGP signatures using app-crypt/gnupg (the default) -# - signify -- verify signatures with Ed25519 public key using app-crypt/signify +# - openpgp -- verify PGP signatures using app-crypt/gnupg (the default) +# - signify -- verify signatures with Ed25519 public key using app-crypt/signify : "${VERIFY_SIG_METHOD:=openpgp}" case ${VERIFY_SIG_METHOD} in |