From b9e1d6088c2f101c7f66cb5ec2428c30d31dff11 Mon Sep 17 00:00:00 2001 From: TheFlyingFool Date: Tue, 21 May 2024 16:25:17 -0500 Subject: [PATCH] I really need to find a better way to test w/o a million commits --- setup.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.ps1 b/setup.ps1 index ab322fb..fbdc506 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -31,6 +31,7 @@ $settingsJson = @{installBehavior = @{ } $settingsJson | ConvertTo-Json | Out-File $settingsPath -Encoding utf8 +winget search test --accept-source-agreements --accept-package-agreements function InstallTheApps() { Foreach ($app in $apps) { @@ -38,11 +39,11 @@ function InstallTheApps() { if (![String]::Join("", $listApp).Contains($app.name)) { Write-host "Installing:" $app.name if ($null -ne $app.source) { - winget install --exact $app.name --source $app.source --accept-source-agreements --accept-package-agreements + winget install --exact $app.name --source $app.source # winget install --exact --silent $app.name --source $app.source } else { - winget install --exact $app.name --accept-source-agreements --accept-package-agreements + winget install --exact $app.name # winget install --exact --silent $app.name } }