mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 23:40:29 +03:00
Don't crash if no auto name is found
This commit is contained in:
parent
ae146ff2a2
commit
97a637b9b4
1 changed files with 3 additions and 0 deletions
|
|
@ -350,12 +350,15 @@ def fetch_autoname(app, tag):
|
||||||
flavours = app['builds'][-1]['gradle']
|
flavours = app['builds'][-1]['gradle']
|
||||||
|
|
||||||
logging.debug("...fetch auto name from " + build_dir)
|
logging.debug("...fetch auto name from " + build_dir)
|
||||||
|
new_name = None
|
||||||
for subdir in possible_subdirs(app):
|
for subdir in possible_subdirs(app):
|
||||||
if subdir == '.':
|
if subdir == '.':
|
||||||
root_dir = build_dir
|
root_dir = build_dir
|
||||||
else:
|
else:
|
||||||
root_dir = os.path.join(build_dir, subdir)
|
root_dir = os.path.join(build_dir, subdir)
|
||||||
new_name = common.fetch_real_name(root_dir, flavours)
|
new_name = common.fetch_real_name(root_dir, flavours)
|
||||||
|
if new_name is not None:
|
||||||
|
break
|
||||||
commitmsg = None
|
commitmsg = None
|
||||||
if new_name:
|
if new_name:
|
||||||
logging.debug("...got autoname '" + new_name + "'")
|
logging.debug("...got autoname '" + new_name + "'")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue