mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
Fix manifestv2 schema: resources.sources.*.in_subdir can also be an integer
This commit is contained in:
parent
5e12608fb1
commit
09b1e7130f
1 changed files with 8 additions and 1 deletions
|
@ -371,7 +371,14 @@
|
||||||
},
|
},
|
||||||
"sha256": {"$ref": "#/$defs/sha256sum"},
|
"sha256": {"$ref": "#/$defs/sha256sum"},
|
||||||
"in_subdir": {
|
"in_subdir": {
|
||||||
"type": "boolean"
|
"anyOf": [
|
||||||
|
{
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"prefetch": {
|
"prefetch": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
|
Loading…
Add table
Reference in a new issue