Files
runner-images/images/win/scripts/Installers/Install-CommonUtils.ps1
T

8 lines
222 B
PowerShell
Raw Normal View History

$commonPackages = (Get-ToolsetContent).choco.common_packages
foreach ($package in $commonPackages)
{
Choco-Install -PackageName $package.name -ArgumentList $package.args
}
Invoke-PesterTests -TestFile "ChocoPackages"