Make gradle and antcommands (previously antcommand) proper lists

This commit is contained in:
Daniel Martí 2014-09-13 13:01:08 +02:00
parent ce25054648
commit a195556378
5 changed files with 29 additions and 29 deletions

View file

@ -99,7 +99,7 @@ flag_defaults = OrderedDict([
('build', ''),
('buildjni', []),
('preassemble', []),
('antcommand', None),
('antcommands', None),
('novcheck', False),
])
@ -528,7 +528,7 @@ def metafieldtype(name):
def flagtype(name):
if name in ['extlibs', 'srclibs', 'patch', 'rm', 'buildjni',
'update', 'scanignore', 'scandelete']:
'update', 'scanignore', 'scandelete', 'gradle', 'antcommands']:
return 'list'
if name in ['init', 'prebuild', 'build']:
return 'script'