1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +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']
lastcommit = ''
if app['Disabled']:
continue
for build in app['builds']:
if 'commit' in build and 'disable' not in build:
lastcommit = build['commit']