Commit ba46cf40 by Oleg Gaidarenko Committed by GitHub

Build: correct verify script (#18236)

Follow-up for 4b16cd6c
parent 31547597
...@@ -5,13 +5,12 @@ _files=$* ...@@ -5,13 +5,12 @@ _files=$*
ALL_SIGNED=0 ALL_SIGNED=0
for file in $_files; do for file in $_files; do
if rpm -K "$file" | grep "pgp.*OK" -q; then if rpm -K "$file" | grep "pgp.*OK" -q ; then
echo "$file" OK
else
ALL_SIGNED=1 ALL_SIGNED=1
echo "$file" NOT SIGNED echo "$file" NOT SIGNED
else
echo "$file" OK
fi fi
done done
exit $ALL_SIGNED exit $ALL_SIGNED
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment