We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 583e2df commit cfa40e4Copy full SHA for cfa40e4
extension/BuildPhpExtension/private/Get-PhpBuild.ps1
@@ -33,6 +33,10 @@ function Get-PhpBuild {
33
34
$fallBackUrl = "$fallbackBaseUrl/$binZipFile"
35
36
+ if($Config.php_version -lt '7.4') {
37
+ $fallBackUrl = $fallBackUrl.replace("vc", "VC")
38
+ }
39
+
40
try {
41
Invoke-WebRequest $binUrl -OutFile $binZipFile
42
} catch {
extension/BuildPhpExtension/private/Get-PhpDevelBuild.ps1
@@ -32,6 +32,10 @@ function Get-PhpDevelBuild {
32
$binUrl = "$baseUrl/$binZipFile"
0 commit comments