From 7fc8ac231da2f5b96b8b979ad8b7fd53b4e21d51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Thu, 5 Aug 2021 08:13:38 +0200 Subject: [PATCH] stages/grub2.inst: add location to required properties The location property is required, otherwise the stage will fail due to KeyError at line 261: location = options["location"] This commit adds the property to the list of required ones. --- stages/org.osbuild.grub2.inst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/org.osbuild.grub2.inst b/stages/org.osbuild.grub2.inst index c6699ea3..02652891 100755 --- a/stages/org.osbuild.grub2.inst +++ b/stages/org.osbuild.grub2.inst @@ -99,7 +99,7 @@ SCHEMA = r""" } }, "additionalProperties": false, -"required": ["filename", "platform", "core", "prefix"], +"required": ["filename", "platform", "location", "core", "prefix"], "properties": { "filename": { "type": "string",