Update setup.ps1

This commit is contained in:
theflyingfool 2024-05-13 16:12:06 -05:00
parent 8717d1666a
commit 44a95062e2

View File

@ -49,7 +49,7 @@ do {
if ($answer -eq 9) { break }
function InstallTheApps([array]$AppList) {
Foreach ($app in $AppList) {
Foreach ($app in $apps) {
$listApp = winget list --exact -q $app.name
if (![String]::Join('', $listApp).Contains($app.name)) {
Write-Host 'Installing:' $app.name