Browse Source

[verify-commits] Allow revoked keys to expire

Github-Pull: #11539
Rebased-From: d23be309c2
0.15
Matt Corallo 7 years ago committed by MarcoFalke
parent
commit
01223a0261
  1. 5
      contrib/verify-commits/gpg.sh

5
contrib/verify-commits/gpg.sh

@ -46,6 +46,11 @@ for LINE in $(echo "$GPG_RES"); do @@ -46,6 +46,11 @@ for LINE in $(echo "$GPG_RES"); do
REVSIG=true
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
;;
"[GNUPG:] EXPKEYSIG "*)
[ "$BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG" != 1 ] && exit 1
REVSIG=true
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
;;
esac
done
if ! $VALID; then

Loading…
Cancel
Save