chiark / gitweb /
allow dashes and underscores in signature file names when checking for reproducability
authorMichael Pöhn <michael.poehn@fsfe.org>
Thu, 22 Feb 2018 22:29:30 +0000 (23:29 +0100)
committerMichael Pöhn <michael.poehn@fsfe.org>
Thu, 22 Feb 2018 22:30:42 +0000 (23:30 +0100)
fdroidserver/common.py

index b0af59fc11f599590fa6f8f3d2357af914da38df..83dfb441d69d98c15d07467ca241efd3c2202ae0 100644 (file)
@@ -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):