Skip to content

Commit d025bc7

Browse files
committed
Allow any subkey in verify-commits
1 parent eddc77a commit d025bc7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contrib/verify-commits/gpg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for LINE in $(echo "$GPG_RES"); do
2626
case "$LINE" in
2727
"[GNUPG:] VALIDSIG "*)
2828
while read KEY; do
29-
case "$LINE" in "[GNUPG:] VALIDSIG $KEY "*) VALID=true;; esac
29+
[ "${LINE#?GNUPG:? VALIDSIG * * * * * * * * * }" = "$KEY" ] && VALID=true
3030
done < ./contrib/verify-commits/trusted-keys
3131
;;
3232
"[GNUPG:] REVKEYSIG "*)

contrib/verify-commits/trusted-keys

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
71A3B16735405025D447E8F274810B012346C9A6
2-
3F1888C6DCA92A6499C4911FDBA1A67379A1A931
2+
133EAC179436F14A5CF1B794860FEB804E669320
33
32EE5C4C3FA15CCADB46ABE529D4BCB6416F53EC
4-
FE09B823E6D83A3BC7983EAA2D7F2372E50FE137
4+
B8B3F1C0E58C15DB6A81D30C3648A882F4316B9B

0 commit comments

Comments
 (0)