1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Avoiding lintVital is no longer necessary in 0.11

This commit is contained in:
Daniel Martí 2014-06-15 13:34:41 +02:00
parent fcface673e
commit 596b3b44c5

View File

@ -708,7 +708,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
# 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.11'):
commands += ['-x', 'lintVital' + flavours_cmd + 'Release']
p = FDroidPopen(commands, cwd=gradle_dir)