mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
Merge branch 'checkupdates_warn_tag' into 'master'
[checkupdates] Warn if no version in latest tag See merge request fdroid/fdroidserver!1001
This commit is contained in:
commit
ab785c5ccd
@ -202,6 +202,12 @@ def check_tags(app, pattern):
|
||||
hver = version
|
||||
|
||||
if hver:
|
||||
if htag != tags[0]:
|
||||
logging.info(
|
||||
"{appid}: latest tag {tag} does not contain highest version {version}".format(
|
||||
appid=app.id, tag=tags[0], version=hver
|
||||
)
|
||||
)
|
||||
try:
|
||||
commit = vcs.getref(htag)
|
||||
if commit:
|
||||
|
Loading…
Reference in New Issue
Block a user