We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff92fbf commit d23be30Copy full SHA for d23be30
contrib/verify-commits/gpg.sh
@@ -46,6 +46,11 @@ for LINE in $(echo "$GPG_RES"); do
46
REVSIG=true
47
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
48
;;
49
+ "[GNUPG:] EXPKEYSIG "*)
50
+ [ "$BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG" != 1 ] && exit 1
51
+ REVSIG=true
52
+ GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
53
+ ;;
54
esac
55
done
56
if ! $VALID; then
0 commit comments