1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

install: don't error if there are bin apks in repo/

This commit is contained in:
Daniel Martí 2014-08-10 01:09:44 +02:00
parent b2f1cedb40
commit 2116dee6d2

View File

@ -76,7 +76,10 @@ def main():
# Get the signed apk with the highest vercode
for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
appid, vercode = common.apknameinfo(apkfile)
try:
appid, vercode = common.apknameinfo(apkfile)
except FDroidException:
continue
if appid not in apks:
continue
if vercodes[appid] and vercode not in vercodes[appid]: