mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 07:22:29 +03:00
allow dashes and underscores in signature file names when checking for reproducability
This commit is contained in:
parent
2f563f533b
commit
8cca83aec4
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