Build: Fix RPM verification (#20460)

This commit is contained in:
Arve Knudsen 2019-11-19 09:22:51 +01:00 committed by GitHub
parent 836cf8e639
commit 4b8249341c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ curl -s https://packages.grafana.com/gpg.key > ~/.rpmdb/pubkeys/grafana.key
ALL_SIGNED=0
for file in $_files; do
if rpm -K "$file" | grep "pgp.*OK" -q ; then
if rpm -K "$file" | grep "digests signatures OK" -q ; then
echo "$file" OK
else
ALL_SIGNED=1