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.
This commit is contained in:
Ondřej Budai 2021-08-05 08:13:38 +02:00 committed by Christian Kellner
parent c8427c392e
commit 7fc8ac231d

View file

@ -99,7 +99,7 @@ SCHEMA = r"""
}
},
"additionalProperties": false,
"required": ["filename", "platform", "core", "prefix"],
"required": ["filename", "platform", "location", "core", "prefix"],
"properties": {
"filename": {
"type": "string",