Merged PR 680484: Always download the cred provider on ADO

Always download the cred provider on ADO
This commit is contained in:
Serge Mera 2022-09-20 23:21:31 +00:00 коммит произвёл Oleksii Kononenko
Родитель a20ee334f5
Коммит 2a10500a65
1 изменённых файлов: 3 добавлений и 1 удалений

4
bxl.sh
Просмотреть файл

@ -195,7 +195,9 @@ function installCredProvider() {
export NUGET_CREDENTIALPROVIDERS_PATH="$credentialProvider"
if [ -f "$credentialProviderExe" ];
# If not on ADO, do not install the cred provider if it is already installed.
# On ADO, just make sure we have the right thing, the download time is not significant for a lab build
if [[ (! -n "$ADOBuild") && -f "$credentialProviderExe" ]];
then
print_info "Credential provider already installed under $destinationFolder"
return;