winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit a695aa4a0333196be884651d2f30fc514dae0aef
parent 3ec75aee18de9355ff48a89d8ec2731aeb76fa50
Author: Matthias Bay <Matthias-Bay@t-online.de>
Date:   Tue, 27 Feb 2024 00:17:08 +0100

Fix settings.schema.0.2.json not validating against schema (#4200)


Diffstat:
Mschemas/JSON/settings/settings.schema.0.2.json | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/schemas/JSON/settings/settings.schema.0.2.json b/schemas/JSON/settings/settings.schema.0.2.json @@ -55,7 +55,7 @@ "description": "The logging channels to enable", "type": "array", "items": { - "uniqueItems": "true", + "uniqueItems": true, "type": "string", "enum": [ "fail", @@ -104,7 +104,7 @@ "description": "The architecture(s) to use for a package install", "type": "array", "items": { - "uniqueItems": "true", + "uniqueItems": true, "type": "string", "enum": [ "neutral", @@ -121,7 +121,7 @@ "description": "The installerType(s) to use for a package install", "type": "array", "items": { - "uniqueItems": "true", + "uniqueItems": true, "type": "string", "enum": [ "inno", @@ -170,7 +170,7 @@ "defaultInstallRoot": { "description": "Default install location to use for packages that require it when not specified", "type": "string", - "maxLength": "32767" + "maxLength": 32767 }, "maxResumes": { "description": "The maximum number of resumes allowed for a single resume id. This is to prevent continuous reboots if an install that requires a reboot is not properly detected.",