mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Merge branch 'allow-dashes-and-underscores-in-signature-file-names-when-checking-for-reproducability' into 'master'
allow dashes and underscores in signature file names when checking for reproducability See merge request fdroid/fdroidserver!468
This commit is contained in:
commit
5a6a51a29e
1 changed files with 1 additions and 1 deletions
|
|
@ -2278,7 +2278,7 @@ def place_srclib(root_dir, number, libpath):
|
|||
o.write('android.library.reference.%d=%s\n' % (number, relpath))
|
||||
|
||||
|
||||
apk_sigfile = re.compile(r'META-INF/[0-9A-Za-z]+\.(SF|RSA|DSA|EC)')
|
||||
apk_sigfile = re.compile(r'META-INF/[0-9A-Za-z_\-]+\.(SF|RSA|DSA|EC)')
|
||||
|
||||
|
||||
def signer_fingerprint_short(sig):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue