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

Exclude lint from gradle build tasks

This commit is contained in:
Daniel Martí 2014-06-08 00:48:35 +02:00
parent 7d8e9bbcaa
commit ef73fd8920

View File

@ -705,6 +705,10 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
commands += ['assemble' + flavours_cmd + 'Release']
# Avoid having to use lintOptions.abortOnError false
# TODO: Do flavours or project names change this task name?
commands += ['-x', 'lintVitalRelease']
p = FDroidPopen(commands, cwd=gradle_dir)
elif thisbuild['type'] == 'ant':