Skip to content

Commit fad7568

Browse files
committed
Fix installation of couchbase extension
1 parent a838737 commit fad7568

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

PhpManager/public/Install-PhpExtension.ps1

+6
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,12 @@
144144
}
145145
$dllPath = $phpDlls[0].FullName
146146
switch ($peclPackageHandle) {
147+
'couchbase' {
148+
$libcouchbaseDll = Join-Path -Path $tempFolder -ChildPath 'libcouchbase.dll'
149+
if (Test-Path -LiteralPath $libcouchbaseDll -PathType Leaf) {
150+
$additionalFiles += $libcouchbaseDll
151+
}
152+
}
147153
'yaml' {
148154
$yamlDll = Join-Path -Path $tempFolder -ChildPath 'yaml.dll'
149155
if (Test-Path -LiteralPath $yamlDll -PathType Leaf) {

0 commit comments

Comments
 (0)