From 2116dee6d29b4da20d45c6ad3dfb774a7588d556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sun, 10 Aug 2014 01:09:44 +0200 Subject: [PATCH] install: don't error if there are bin apks in repo/ --- fdroidserver/install.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fdroidserver/install.py b/fdroidserver/install.py index 338ddf96..f6862e5a 100644 --- a/fdroidserver/install.py +++ b/fdroidserver/install.py @@ -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]: