Skip to content

Commit

Permalink
[verify-commits] Allow revoked keys to expire
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueMatt committed Oct 20, 2017
1 parent ff92fbf commit d23be30
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions contrib/verify-commits/gpg.sh
Expand Up @@ -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
Expand Down

0 comments on commit d23be30

Please sign in to comment.