mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
More list comprehension fixes
This commit is contained in:
parent
34a3405208
commit
1757017b8a
3 changed files with 9 additions and 9 deletions
|
|
@ -684,7 +684,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
|||
|
||||
commands = [config['gradle']]
|
||||
if thisbuild['preassemble']:
|
||||
commands += thisbuild['preassemble'].split()
|
||||
commands += thisbuild['preassemble']
|
||||
|
||||
flavours_cmd = ''.join(flavours)
|
||||
if flavours_cmd:
|
||||
|
|
|
|||
|
|
@ -527,7 +527,7 @@ def metafieldtype(name):
|
|||
|
||||
|
||||
def flagtype(name):
|
||||
if name in ['extlibs', 'srclibs', 'patch', 'rm', 'buildjni',
|
||||
if name in ['extlibs', 'srclibs', 'patch', 'rm', 'buildjni', 'preassemble',
|
||||
'update', 'scanignore', 'scandelete', 'gradle', 'antcommands']:
|
||||
return 'list'
|
||||
if name in ['init', 'prebuild', 'build']:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue