1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

[checkupdates] Warn if no version in latest tag

This commit is contained in:
Jochen Sprickerhof 2021-08-21 08:21:41 +02:00
parent 5e35c20d5d
commit fde48a1e77

View File

@ -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: