mirror of https://github.com/apache/lucene.git
Allow GPG keys with no spaces
This commit is contained in:
parent
75c5325932
commit
55c061770e
|
@ -314,7 +314,7 @@ def check_key_in_keys(gpgKeyID, local_keys):
|
|||
gpgKeyID40Char = "%s %s %s %s %s %s %s %s %s %s" % \
|
||||
(gpgKeyID[0:4], gpgKeyID[4:8], gpgKeyID[8:12], gpgKeyID[12:16], gpgKeyID[16:20],
|
||||
gpgKeyID[20:24], gpgKeyID[24:28], gpgKeyID[28:32], gpgKeyID[32:36], gpgKeyID[36:])
|
||||
re_to_match = r"^pub .*\n\s+%s" % gpgKeyID40Char
|
||||
re_to_match = r"^pub .*\n\s+(%s|%s)" % (gpgKeyID40Char, gpgKeyID)
|
||||
else:
|
||||
print('Invalid gpg key id format. Must be 8 byte short ID or 40 byte fingerprint, with or without 0x prefix, no spaces.')
|
||||
exit(2)
|
||||
|
|
Loading…
Reference in New Issue