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:
parent
c8427c392e
commit
7fc8ac231d
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ SCHEMA = r"""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": ["filename", "platform", "core", "prefix"],
|
"required": ["filename", "platform", "location", "core", "prefix"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"filename": {
|
"filename": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue