mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
verify-sig.eclass: Fix multi-file verify-sig_verify_signed_checksums
Fix a regression in verify-sig_verify_signed_checksums() that caused
it to incorrectly explode arguments when multiple filenames were
passed to the `files` argument.
Fixes: 6f570b3d2d (verify-sig.eclass: add app-crypt/signify support)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -412,7 +412,7 @@ verify-sig_verify_signed_checksums() {
|
||||
case ${VERIFY_SIG_METHOD} in
|
||||
openpgp)
|
||||
_gpg_verify_signed_checksums \
|
||||
"${checksum_file}" "${algo}" "${files[@]}" "${key}"
|
||||
"${checksum_file}" "${algo}" "${files[*]}" "${key}"
|
||||
;;
|
||||
signify)
|
||||
signify -C -p "${key}" \
|
||||
|
||||
Reference in New Issue
Block a user