From be4fd75a7a64361fcba0b6103e0467132d7010ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 7 Aug 2024 13:28:52 +0200 Subject: [PATCH] Allow live_images phase to still be skipped MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this fix existing configurations break even though they don't use the phase. Signed-off-by: Lubomír Sedlář (cherry picked from commit c59f2371a3c48ecb968d54e4504f295eba7f8240) --- pungi/checks.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pungi/checks.py b/pungi/checks.py index 1ee614a7..03714344 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -862,7 +862,10 @@ def make_schema(): "paths_module": {"type": "string"}, "skip_phases": { "type": "array", - "items": {"type": "string", "enum": PHASES_NAMES + ["productimg"]}, + "items": { + "type": "string", + "enum": PHASES_NAMES + ["productimg", "live_images"], + }, "default": [], }, "image_name_format": {