mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-05 17:01:06 +03: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
1 changed files with 6 additions and 0 deletions
|
@ -202,6 +202,12 @@ def check_tags(app, pattern):
|
||||||
hver = version
|
hver = version
|
||||||
|
|
||||||
if hver:
|
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:
|
try:
|
||||||
commit = vcs.getref(htag)
|
commit = vcs.getref(htag)
|
||||||
if commit:
|
if commit:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue