mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
install: don't error if there are bin apks in repo/
This commit is contained in:
parent
b2f1cedb40
commit
2116dee6d2
@ -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]:
|
||||
|
Loading…
Reference in New Issue
Block a user