зеркало из https://github.com/microsoft/BuildXL.git
Merged PR 680484: Always download the cred provider on ADO
Always download the cred provider on ADO
This commit is contained in:
Родитель
a20ee334f5
Коммит
2a10500a65
4
bxl.sh
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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче