1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Don't run lint on disabled apps

This commit is contained in:
Daniel Martí 2014-01-23 10:54:32 +01:00
parent b3ef0970dc
commit d6dbad65c6

View File

@ -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']