Merge branch 'main' of git.theflyingfool.com:theflyingfool/Win_Setup

This commit is contained in:
TheFlyingFool 2024-05-21 16:26:53 -05:00
commit b9de693dce

View File

@ -40,10 +40,12 @@ function InstallTheApps() {
Write-host "Installing:" $app.name
if ($null -ne $app.source) {
winget install --exact $app.name --source $app.source
winget install --exact $app.name --source $app.source
# winget install --exact --silent $app.name --source $app.source
}
else {
winget install --exact $app.name
winget install --exact $app.name
# winget install --exact --silent $app.name
}
}