From c567526eac05aa0fb5e6af22f73d037656cae803 Mon Sep 17 00:00:00 2001 From: Roy Ashbrook Date: Tue, 16 Nov 2021 15:34:36 -0500 Subject: [PATCH] testing caching --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2435e5e..4002560 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -39,13 +39,13 @@ jobs: - powershell: | $ProgressPreference = 'SilentlyContinue' $uri = 'https://download.microsoft.com/download/3/5/C/35C84C36-661A-44E6-9324-8786B8DBE231/accessdatabaseengine_X64.exe' - md $(ACE_FOLDER) - irm $uri -outfile (join-path $(ACE_FOLDER) ace.exe) + md $env:ACE_FOLDER + irm $uri -outfile (join-path $env:ACE_FOLDER ace.exe) $ProgressPreference = 'Continue' displayName: 'Download ACE' condition: ne(variables.CACHE_RESTORED, 'true') - - powershell: Start-Process .\ace\ace.exe -Wait -ArgumentList "/quiet /passive /norestart" + - powershell: Start-Process (join-path $env:ACE_FOLDER ace.exe) -Wait -ArgumentList "/quiet /passive /norestart" displayName: 'Install ACE' - powershell: (New-Object system.data.oledb.oledbenumerator).GetElements().SOURCES_NAME