File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ if ($PSVersionTable.PSEdition -ne 'Core') {
3232
3333$ErrorActionPreference = " Stop"
3434
35+ $CORE_TOOLS_VERSION = ' 4.0.7317'
36+
3537$ProjectBaseDirectory = Join-Path $PSScriptRoot " ..\..\.."
3638$ProjectTemporaryPath = Join-Path ([System.IO.Path ]::GetTempPath()) " DurableTaskExtensionE2ETests"
3739New-Item - Path $ProjectTemporaryPath - ItemType Directory - ErrorAction SilentlyContinue
@@ -101,8 +103,11 @@ else
101103
102104 if ([string ]::IsNullOrWhiteSpace($coreToolsURL ))
103105 {
104- $coreToolsURL = " https://functionsclibuilds.blob.core.windows.net/builds/$FunctionsRuntimeVersion /latest/Azure.Functions.Cli.$os -$arch .zip"
105- $versionUrl = " https://functionsclibuilds.blob.core.windows.net/builds/$FunctionsRuntimeVersion /latest/version.txt"
106+ # $coreToolsURL = "https://functionsclibuilds.blob.core.windows.net/builds/$FunctionsRuntimeVersion/latest/Azure.Functions.Cli.$os-$arch.zip"
107+ # $versionUrl = "https://functionsclibuilds.blob.core.windows.net/builds/$FunctionsRuntimeVersion/latest/version.txt"
108+
109+ $coreToolsURL = " https://github.com/Azure/azure-functions-core-tools/releases/download/$CORE_TOOLS_VERSION /Azure.Functions.Cli.$os -$arch .$CORE_TOOLS_VERSION .zip"
110+
106111 }
107112
108113 Write-Host " "
You can’t perform that action at this time.
0 commit comments