Handle exception in Update-PhpCAInfo in win32.ps1

This commit is contained in:
Shivam Mathur
2019-11-27 20:36:58 +05:30
parent a29956826a
commit 22f5ad47d2

View File

@ -50,7 +50,10 @@ try {
Update-PhpCAInfo -Path $php_dir -Source CurrentUser
}
catch {
Update-PhpCAInfo -Path $php_dir -Source Curl
try {
Update-PhpCAInfo -Path $php_dir -Source Curl
} catch {
}
}
if ([Version]$installed.Version -ge '7.4') {
Copy-Item "$dir\..\src\ext\php_pcov.dll" -Destination "$($installed.ExtensionsPath)\php_pcov.dll"