mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-08-25 23:14:06 +07:00
Fix to not delete pecl.ini when disabling extensions
This commit is contained in:
@ -94,7 +94,7 @@ disable_extension() {
|
||||
# Function to disable shared extensions.
|
||||
disable_all_shared() {
|
||||
sudo sed -i.orig -E -e "/^(zend_)?extension\s*=/d" "${ini_file[@]}" "$pecl_file" 2>/dev/null || true
|
||||
sudo find "${ini_dir:-$scan_dir}"/.. -name "*.ini" -not -path "*php.ini" -not -path "*phar.ini" -not -path "*mods-available*" -delete >/dev/null 2>&1 || true
|
||||
sudo find "${ini_dir:-$scan_dir}"/.. -name "*.ini" -not -path "*php.ini" -not -path "*phar.ini" -not -path "*pecl.ini" -not -path "*mods-available*" -delete >/dev/null 2>&1 || true
|
||||
add_log "${tick:?}" "none" "Disabled all shared extensions"
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user