mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
Don't run lint on disabled apps
This commit is contained in:
parent
b3ef0970dc
commit
d6dbad65c6
1 changed files with 3 additions and 0 deletions
|
@ -80,6 +80,9 @@ def main():
|
||||||
appid = app['id']
|
appid = app['id']
|
||||||
lastcommit = ''
|
lastcommit = ''
|
||||||
|
|
||||||
|
if app['Disabled']:
|
||||||
|
continue
|
||||||
|
|
||||||
for build in app['builds']:
|
for build in app['builds']:
|
||||||
if 'commit' in build and 'disable' not in build:
|
if 'commit' in build and 'disable' not in build:
|
||||||
lastcommit = build['commit']
|
lastcommit = build['commit']
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue