stages/grub2: fix json for stage options

Extra data: line 49 column 1 (char 1350) caused by an extra "}" at
the end of the data.
This commit is contained in:
Christian Kellner 2020-01-28 12:39:50 +01:00 committed by Tom Gundersen
parent c084d51e3e
commit a3b9b55682

View file

@ -73,13 +73,12 @@ STAGE_OPTS = """
"description": "Include UEFI boot support",
"type": "object",
"required": ["vendor"],
"properties": {
"vendor": {
"type": "string",
"description": "The vendor of the UEFI binaries (this is us)",
"examples": ["fedora"],
"pattern": "^(.+)$"
}
"properties": {
"vendor": {
"type": "string",
"description": "The vendor of the UEFI binaries (this is us)",
"examples": ["fedora"],
"pattern": "^(.+)$"
}
}
}