Skip to content

Commit e6422da

Browse files
committed
Fix parsing xmlrpc name
1 parent 6d2e80f commit e6422da

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extension/BuildPhpExtension/private/Get-Extension.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ function Get-Extension {
6969
if($name.Contains('oci8')) {
7070
$name = 'oci8_19'
7171
} elseif ([string]$configW32Content -match ($([regex]::Escape($name)) + '\s*=\s*["''](.+?)["'']')) {
72-
$name = $matches[1]
72+
if($matches[1] -ne 'no') {
73+
$name = $matches[1]
74+
}
7375
}
7476

7577
# Apply patches only for php/php-windows-builder and shivammathur/php-windows-builder

0 commit comments

Comments
 (0)