Fix condition to check if extension is enabled

This commit is contained in:
Shivam Mathur
2019-09-24 18:55:45 +05:30
parent e63fd8e122
commit 83cc9a4bcf
292 changed files with 44 additions and 56059 deletions

View File

@ -1,13 +1,7 @@
version=$(php-config --version | cut -c 1-3)
if [ "$version" != "$1" ]; then
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
brew tap exolnet/homebrew-deprecated > /dev/null 2>&1;
brew unlink php;
brew install php@"$1";
brew link --force --overwrite php@"$1";
else
sudo cp /etc/php.ini.default /etc/php.ini
fi
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
brew tap exolnet/homebrew-deprecated > /dev/null 2>&1;
brew install php@"$1";
brew link --force --overwrite php@"$1";
ini_file=$(php --ini | grep "Loaded Configuration" | sed -e "s|.*:s*||" | sed "s/ //g")
ext_dir=$(/usr/bin/php -i | grep "extension_dir => /usr" | sed -e "s|.*=> s*||")
sudo chmod 777 "$ini_file"