Merge pull request #1965 from Salamandar/fix_schema

Fix manifestv2 schema: resources.sources.*.in_subdir can also be an integer
This commit is contained in:
Alexandre Aubin
2024-01-16 23:11:03 +01:00
committed by GitHub

View File

@ -371,7 +371,14 @@
},
"sha256": {"$ref": "#/$defs/sha256sum"},
"in_subdir": {
"type": "boolean"
"anyOf": [
{
"type": "boolean"
},
{
"type": "integer"
}
]
},
"prefetch": {
"type": "boolean"