mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 11:00:10 +01:00
fix ignoring developer supplied reference apks for reproducible builds when publishing
This commit is contained in:
parent
1ee90d05e2
commit
5726432159
@ -210,6 +210,10 @@ def main():
|
||||
for apkfile in sorted(glob.glob(os.path.join(unsigned_dir, '*.apk'))
|
||||
+ glob.glob(os.path.join(unsigned_dir, '*.zip'))):
|
||||
|
||||
# skip over developer supplied reference binaries for reproducible builds
|
||||
if apkfile.endswith('.binary.apk'):
|
||||
continue
|
||||
|
||||
appid, vercode = common.publishednameinfo(apkfile)
|
||||
apkfilename = os.path.basename(apkfile)
|
||||
if vercodes and appid not in vercodes:
|
||||
|
Loading…
Reference in New Issue
Block a user