1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

lint: AUM with UCM: HTTP must have a pattern

Closes: #1029
This commit is contained in:
Jochen Sprickerhof 2022-11-04 19:48:21 +01:00
parent 551fca21b3
commit dedce2f236
No known key found for this signature in database
GPG Key ID: 5BFFDCC258E69433

View File

@ -690,6 +690,12 @@ def check_updates_expected(app):
)
def check_updates_ucm_http_aum_pattern(app): # noqa: D403
"""AutoUpdateMode with UpdateCheckMode: HTTP must have a pattern."""
if app.UpdateCheckMode == "HTTP" and app.AutoUpdateMode == "Version":
yield _("AutoUpdateMode with UpdateCheckMode: HTTP must have a pattern.")
def main():
global config, options
@ -798,6 +804,7 @@ def main():
check_license_tag,
check_current_version_code,
check_updates_expected,
check_updates_ucm_http_aum_pattern,
]
for check_func in app_check_funcs: