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

lint: take forcevercode into account for UCM warnings

This commit is contained in:
Daniel Martí 2015-06-07 14:14:56 +02:00
parent d0a10e05d9
commit 5af099eb08

View File

@ -137,6 +137,7 @@ def main():
and app['Update Check Mode'] == 'RepoManifest'
and not curbuild['commit'].startswith('unknown')
and curbuild['vercode'] == app['Current Version Code']
and not curbuild['forcevercode']
and any(s in curbuild['commit'] for s in '.,_-/')):
warn("Last used commit '%s' looks like a tag, but Update Check Mode is '%s'" % (
curbuild['commit'], app['Update Check Mode']))