Avoid lint on all new plugin versions, remove TODO

This commit is contained in:
Daniel Martí 2014-07-04 08:59:30 +02:00
parent 8595e216f4
commit faa35fb7c4

View file

@ -695,8 +695,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
commands += ['assemble' + flavours_cmd + 'Release'] commands += ['assemble' + flavours_cmd + 'Release']
# Avoid having to use lintOptions.abortOnError false # Avoid having to use lintOptions.abortOnError false
# TODO: Do flavours or project names change this task name? if thisbuild['gradlepluginver'] >= LooseVersion('0.8'):
if LooseVersion('0.8') <= thisbuild['gradlepluginver'] < LooseVersion('0.12'):
commands += ['-x', 'lintVital' + flavours_cmd + 'Release'] commands += ['-x', 'lintVital' + flavours_cmd + 'Release']
p = FDroidPopen(commands, cwd=root_dir) p = FDroidPopen(commands, cwd=root_dir)