[unpackfs] Fix schema validation

- the *weight* key was introduced without a corresponding schema
  change, so the examples didn't validate anymore.
This commit is contained in:
Adriaan de Groot 2020-10-23 12:40:03 +02:00
parent c412e285c2
commit 9e624c7bd5

View File

@ -17,4 +17,5 @@ properties:
destination: { type: string } destination: { type: string }
excludeFile: { type: string } excludeFile: { type: string }
exclude: { type: array, items: { type: string } } exclude: { type: array, items: { type: string } }
weight: { type: integer, exclusiveMinimum: 0 }
required: [ source , sourcefs, destination ] required: [ source , sourcefs, destination ]