chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2f1ced
)
install: don't error if there are bin apks in repo/
author
Daniel Martí
<mvdan@mvdan.cc>
Sat, 9 Aug 2014 23:09:44 +0000
(
01:09
+0200)
committer
Daniel Martí
<mvdan@mvdan.cc>
Sat, 9 Aug 2014 23:09:44 +0000
(
01:09
+0200)
fdroidserver/install.py
patch
|
blob
|
history
diff --git
a/fdroidserver/install.py
b/fdroidserver/install.py
index 338ddf9647226a0a5a200b201ccf5f2abf2a3bc2..f6862e5a17703d83e14bc67f01244244722d9bef 100644
(file)
--- 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]: