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 3c654bf commit 7f02fbbCopy full SHA for 7f02fbb
PhpManager/public/Install-PhpExtension.ps1
@@ -140,8 +140,10 @@
140
Write-Verbose ("Installing new extension '{0}' version {1}" -f $newExtension.Name, $newExtension.Version)
141
Install-PhpExtensionPrerequisite -PhpVersion $phpVersion -Extension $newExtension
142
$newExtensionFilename = [System.IO.Path]::Combine($phpVersion.ExtensionsPath, [System.IO.Path]::GetFileName($dllPath))
143
+ Write-Verbose "Moving ""$dllPath"" to ""$newExtensionFilename"""
144
Move-Item -Path $dllPath -Destination $newExtensionFilename
145
if (-Not($DontEnable)) {
146
+ Write-Verbose "Enabling extension ""$($newExtension.Name)"" for ""$($phpVersion.ExecutablePath)"""
147
Enable-PhpExtension -Extension $newExtension.Name -Path $phpVersion.ExecutablePath
148
}
149
0 commit comments