File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
extension/BuildPhpExtension/private Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function Get-PhpBuildDetails {
13
13
begin {
14
14
}
15
15
process {
16
- if ($Config.php_version -eq ' master' ) {
16
+ if ($Config.php_version -eq ' master' -or $Config .php_version -eq ' 8.5 ' ) {
17
17
$baseUrl = $fallbackBaseUrl = " https://github.com/shivammathur/php-builder-windows/releases/download/master"
18
18
$PhpSemver = $PhpVersion
19
19
} else {
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ function Get-PhpBuild {
40
40
throw " PHP version $PhpVersion is not supported."
41
41
}
42
42
}
43
- if ($PhpVersion -eq ' master' ) {
43
+ if ($PhpVersion -eq ' master' -or $PhpVersion -eq ' 8.5 ' ) {
44
44
$fallbackBaseUrl = $baseUrl = " https://github.com/shivammathur/php-builder-windows/releases/download/master"
45
45
} else {
46
46
$releaseState = if ($PhpVersion -match " [a-z]" ) {" qa" } else {" releases" }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function Get-PhpTestPack {
22
22
process {
23
23
Add-Type - Assembly " System.IO.Compression.Filesystem"
24
24
25
- if ($PhpVersion -eq ' master' ) {
25
+ if ($PhpVersion -eq ' master' -or $PhpVersion -eq ' 8.5 ' ) {
26
26
$fallbackBaseUrl = $baseUrl = " https://github.com/shivammathur/php-builder-windows/releases/download/master"
27
27
} else {
28
28
$releaseState = if ($PhpVersion -match " [a-z]" ) {" qa" } else {" releases" }
You can’t perform that action at this time.
0 commit comments