mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
diagnosis: add complains if some app installed are still requiring only yunohost 3.x
This commit is contained in:
parent
771922da76
commit
31aacb3361
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class MyDiagnoser(Diagnoser):
|
|||
yunohost_version_req = (
|
||||
app["manifest"].get("requirements", {}).get("yunohost", "").strip(">= ")
|
||||
)
|
||||
if yunohost_version_req.startswith("2."):
|
||||
if yunohost_version_req.startswith("2.") or yunohost_version_req.startswith("3."):
|
||||
yield ("error", "diagnosis_apps_outdated_ynh_requirement")
|
||||
|
||||
deprecated_helpers = [
|
||||
|
|
Loading…
Add table
Reference in a new issue