Add a collection for prepended paths

This commit is contained in:
Andrew Arnott 2021-09-23 15:36:27 -06:00
Родитель ecbaf97d74
Коммит 934d5f208f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A9B9910CDCCDA441
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -48,6 +48,7 @@ Param (
)
$EnvVars = @{}
$PrependPath = @()
if (!$NoPrerequisites) {
if (!$NoNuGetCredProvider) {
@ -82,7 +83,7 @@ try {
}
}
& "$PSScriptRoot/tools/Set-EnvVars.ps1" -Variables $EnvVars | Out-Null
& "$PSScriptRoot/tools/Set-EnvVars.ps1" -Variables $EnvVars -PrependPath $PrependPath | Out-Null
}
catch {
Write-Error $error[0]