Store app configs under programs

This commit is contained in:
Manuel Thalmann 2024-10-13 19:52:28 +02:00
parent 95d079bcaf
commit 561ac46073
11 changed files with 80 additions and 72 deletions
scripts/Windows/Software/git

View file

@ -7,7 +7,7 @@ Start-SoftwareInstaller @args `
-Inherit "$PSScriptRoot/../../../Common/Software/git/Main.ps1" `
-Installer {
$params = "/WindowsTerminalProfile";
$defaultBranch = Get-OSConfig "git.defaultBranch";
$defaultBranch = Get-OSConfig "programs.git.defaultBranch";
if ($defaultBranch) {
$params += " /DefaultBranchName:`"$defaultBranch`"";