mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Merge branch '509-Error-publishing-an-apk' into 'master'
Resolve "Error publishing an apk" See merge request fdroid/fdroidserver!525
This commit is contained in:
commit
b3e3aa6e0e
1 changed files with 4 additions and 0 deletions
|
|
@ -210,6 +210,10 @@ def main():
|
||||||
for apkfile in sorted(glob.glob(os.path.join(unsigned_dir, '*.apk'))
|
for apkfile in sorted(glob.glob(os.path.join(unsigned_dir, '*.apk'))
|
||||||
+ glob.glob(os.path.join(unsigned_dir, '*.zip'))):
|
+ 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)
|
appid, vercode = common.publishednameinfo(apkfile)
|
||||||
apkfilename = os.path.basename(apkfile)
|
apkfilename = os.path.basename(apkfile)
|
||||||
if vercodes and appid not in vercodes:
|
if vercodes and appid not in vercodes:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue