mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
lint: warn about target= in gradle builds
This commit is contained in:
parent
a566ee4475
commit
7e28e0ed90
1 changed files with 2 additions and 0 deletions
|
|
@ -294,6 +294,8 @@ def check_builds(app):
|
|||
ref = srclib.split('@')[1].split('/')[0]
|
||||
if ref.startswith(s):
|
||||
yield "Branch '%s' used as commit in srclib '%s'" % (s, srclib)
|
||||
if build.target and build.method() == 'gradle':
|
||||
yield "target= has no gradle support"
|
||||
|
||||
|
||||
def main():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue