Redirect arguments to chocolatey properly

This commit is contained in:
Manuel Thalmann 2024-08-10 15:13:46 +02:00
parent b2a1e06dbf
commit 5449b08305

View file

@ -42,7 +42,7 @@ $null = New-Module {
}
if ($Names.Count -ge 1) {
choco install -y $ArgumentList $Names;
choco install -y @ArgumentList @Names;
}
}