commit c925c39194f081b406b98223ef95d457f7e2fec0
parent dfc5a8f30ac38635d5f7fb76e614af18d471176f
Author: Gijs Reijn <gijsreijn@hotmail.com>
Date: Tue, 7 Jan 2025 23:40:52 +0100
Add default value for `ConfigureBehavior` (#5061)
When inspecting the schema for settings, the default value for
`ConfigureBehavior` is missing. This PR adds the default value.
---------
Co-authored-by: G.Reijn <G.Reijn@enzazaden.nl>
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/schemas/JSON/settings/settings.schema.0.2.json b/schemas/JSON/settings/settings.schema.0.2.json
@@ -205,7 +205,8 @@
"defaultModuleRoot": {
"description": "The default root directory where PowerShell modules are installed to when applying a configuration.",
"type": "string",
- "maxLength": 32767
+ "maxLength": 32767,
+ "default": "%LOCALAPPDATA%/Microsoft/WinGet/Configuration/Modules/"
}
}
},
@@ -302,7 +303,7 @@
"fonts": {
"description": "Enable support for managing fonts",
"type": "boolean",
- "default": false
+ "default": false
}
}
}