Skip to content

Commit

Permalink
Add default value for ConfigureBehavior (microsoft#5061)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Gijsreyn authored Jan 7, 2025
1 parent dfc5a8f commit c925c39
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions schemas/JSON/settings/settings.schema.0.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
}
}
},
Expand Down Expand Up @@ -302,7 +303,7 @@
"fonts": {
"description": "Enable support for managing fonts",
"type": "boolean",
"default": false
"default": false
}
}
}
Expand Down

0 comments on commit c925c39

Please sign in to comment.