From 6a4bc3f1c56f26c24a36740e7e8c43897656773c Mon Sep 17 00:00:00 2001 From: nicole mazzuca Date: Mon, 2 Aug 2021 15:13:29 -0700 Subject: [PATCH] [windows ci] ignore rmdir errors --- scripts/azure-pipelines/windows/azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/azure-pipelines/windows/azure-pipelines.yml b/scripts/azure-pipelines/windows/azure-pipelines.yml index c70eab86b6f717..5131617a57f9f0 100644 --- a/scripts/azure-pipelines/windows/azure-pipelines.yml +++ b/scripts/azure-pipelines/windows/azure-pipelines.yml @@ -29,7 +29,7 @@ jobs: - script: .\bootstrap-vcpkg.bat displayName: 'Bootstrap vcpkg' - script: | - rmdir /S /Q ${{ variables.VCPKG_DOWNLOADS }} 2>&1 + rmdir /S /Q ${{ variables.VCPKG_DOWNLOADS }} 2>&1 || (call ) displayName: 'Clean downloads' - task: PowerShell@2 displayName: '*** Test Modified Ports and Prepare Test Logs ***'