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

Also warn if UCM is None when using tags in commit=

This commit is contained in:
Daniel Martí 2014-01-20 12:18:50 +01:00
parent 2f5b029d97
commit 6d23119fae

View File

@ -85,9 +85,10 @@ def main():
lastcommit = build['commit']
# Potentially incorrect UCM
if (app['Update Check Mode'] == 'RepoManifest' and
if (app['Update Check Mode'] in ['RepoManifest', 'None'] and
any(s in lastcommit for s in ('.', ',', '_', '-', '/'))):
warn("Last used commit '%s' looks like a tag, but Update Check Mode is RepoManifest" % lastcommit)
warn("Last used commit '%s' looks like a tag, but Update Check Mode is '%s'" % (
lastcommit, app['Update Check Mode']))
# No license
if app['License'] == 'Unknown':