Allow live_images phase to still be skipped

Without this fix existing configurations break even though they don't
use the phase.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2024-08-07 13:28:52 +02:00
parent 3b2c6ae72a
commit c59f2371a3

View File

@ -849,7 +849,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": {