Restore stability workaround for PHP 8.1 on Windows

This commit is contained in:
Shivam Mathur 2022-12-25 21:26:22 +05:30
parent cb0c293f02
commit 9114b007ae
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -96,10 +96,9 @@ Function Add-Extension {
if(($version -match $nightly_versions) -and (Select-String -Path $src\configs\windows_extensions -Pattern $extension -SimpleMatch -Quiet)) { if(($version -match $nightly_versions) -and (Select-String -Path $src\configs\windows_extensions -Pattern $extension -SimpleMatch -Quiet)) {
Add-NightlyExtension $extension Add-NightlyExtension $extension
} else { } else {
# Patch till PHP 8.2 DLLs are released as stable. # Patch till DLLs for PHP 8.1 and 8.2 are released as stable.
$minimumStability = $stability $minimumStability = $stability
if ($version -eq '8.2' -and $stability -eq 'stable') if ($version -match '8.[1-2]' -and $stability -eq 'stable') {
{
$minimumStability = 'snapshot' $minimumStability = 'snapshot'
} }