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 6d2e80f commit e6422daCopy full SHA for e6422da
extension/BuildPhpExtension/private/Get-Extension.ps1
@@ -69,7 +69,9 @@ function Get-Extension {
69
if($name.Contains('oci8')) {
70
$name = 'oci8_19'
71
} elseif ([string]$configW32Content -match ($([regex]::Escape($name)) + '\s*=\s*["''](.+?)["'']')) {
72
- $name = $matches[1]
+ if($matches[1] -ne 'no') {
73
+ $name = $matches[1]
74
+ }
75
}
76
77
# Apply patches only for php/php-windows-builder and shivammathur/php-windows-builder
0 commit comments