From 45070904afc822004fc8906a40339bb7c273a2a3 Mon Sep 17 00:00:00 2001 From: eric_G <46165813+ericgaspar@users.noreply.github.com> Date: Wed, 11 Dec 2024 18:40:51 +0100 Subject: [PATCH] Fix errors in manifest with YNH version and digit sources fix https://ci-apps-dev.yunohost.org/ci/job/4772 linter issue --- schemas/manifest.v2.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/manifest.v2.schema.json b/schemas/manifest.v2.schema.json index ac38f57121..17f516f59d 100644 --- a/schemas/manifest.v2.schema.json +++ b/schemas/manifest.v2.schema.json @@ -149,7 +149,7 @@ "properties": { "yunohost": { "type": "string", - "pattern": "^>= ?[0-9]{1,2}(\\.[0-9]{1,2}){0,2}$" + "pattern": "^>= ?[0-9]{1,2}(\\.[0-9]{1,2}){0,3}$" }, "helpers_version": { "type": "string", @@ -486,7 +486,7 @@ "required": [], "additionalProperties": false, "patternProperties": { - "^[a-z][a-z0-9_-]*$": { + "^[a-z0-9][a-z0-9_-]*$": { "type": "object", "required": [], "additionalProperties": false,