mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +03:00
Don't warn about tags UCM usage if UCM:None
This commit is contained in:
parent
0c79ac54e6
commit
6855b6c442
1 changed files with 1 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ def main():
|
||||||
lastcommit = build['commit']
|
lastcommit = build['commit']
|
||||||
|
|
||||||
# Potentially incorrect UCM
|
# Potentially incorrect UCM
|
||||||
if (app['Update Check Mode'] in ['RepoManifest', 'None'] and
|
if (app['Update Check Mode'].startswith('RepoManifest') 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 '%s'" % (
|
warn("Last used commit '%s' looks like a tag, but Update Check Mode is '%s'" % (
|
||||||
lastcommit, app['Update Check Mode']))
|
lastcommit, app['Update Check Mode']))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue