mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-10 01:10:11 +01:00
Also warn if UCM is None when using tags in commit=
This commit is contained in:
parent
2f5b029d97
commit
6d23119fae
@ -85,9 +85,10 @@ def main():
|
|||||||
lastcommit = build['commit']
|
lastcommit = build['commit']
|
||||||
|
|
||||||
# Potentially incorrect UCM
|
# 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 ('.', ',', '_', '-', '/'))):
|
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
|
# No license
|
||||||
if app['License'] == 'Unknown':
|
if app['License'] == 'Unknown':
|
||||||
|
Loading…
Reference in New Issue
Block a user