Fix support for zephir_parser

This commit is contained in:
Shivam Mathur
2024-12-28 18:15:07 +05:30
parent 5bb2eed0aa
commit 85ed51cf85
2 changed files with 13 additions and 5 deletions

View File

@ -71,10 +71,14 @@ Function Add-ZephirParser() {
Enable-PhpExtension -Extension zephir_parser -Path $php_dir
} else {
$status = 'Installed and enabled'
Add-ZephirParserFromGitHub $extension
try {
Add-ZephirParserFromGitHub $extension
} catch {
Add-Extension $extension >$null 2>&1
}
}
Add-ExtensionLog zephir_parser $status
} catch {
Add-Log $cross $extension "Could not install $extension on PHP $($installed.FullVersion)"
}
}
}