mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
install: don't error if there are bin apks in repo/
This commit is contained in:
parent
b2f1cedb40
commit
2116dee6d2
1 changed files with 4 additions and 1 deletions
|
|
@ -76,7 +76,10 @@ def main():
|
||||||
# Get the signed apk with the highest vercode
|
# Get the signed apk with the highest vercode
|
||||||
for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
|
for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
|
||||||
|
|
||||||
|
try:
|
||||||
appid, vercode = common.apknameinfo(apkfile)
|
appid, vercode = common.apknameinfo(apkfile)
|
||||||
|
except FDroidException:
|
||||||
|
continue
|
||||||
if appid not in apks:
|
if appid not in apks:
|
||||||
continue
|
continue
|
||||||
if vercodes[appid] and vercode not in vercodes[appid]:
|
if vercodes[appid] and vercode not in vercodes[appid]:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue