From a348fe2d4914b045fc7e21fa24abf13c2ab22f66 Mon Sep 17 00:00:00 2001 From: Simon de Vlieger Date: Mon, 15 May 2023 11:02:37 +0200 Subject: [PATCH] stages/isolinux: default list Otherwise when `opts` (which isn't `required`) is left out we fail the stage. --- stages/org.osbuild.isolinux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/org.osbuild.isolinux b/stages/org.osbuild.isolinux index bda7228a..36081916 100755 --- a/stages/org.osbuild.isolinux +++ b/stages/org.osbuild.isolinux @@ -190,7 +190,7 @@ def main(tree, inputs, options): version = options["product"]["version"] kdir = options["kernel"]["dir"] - kopts = options["kernel"].get("opts") + kopts = options["kernel"].get("opts", []) debug = options.get("debug", False) data = inputs["data"]["path"]