diff options
author | Mathias Bynens <mathias@qiwi.be> | 2013-07-03 09:13:32 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2013-07-03 09:13:32 +0200 |
commit | 8fb0a744ec2f67873206a8e2c956edeac8236001 (patch) | |
tree | ae638e7b63be84606db86c6362b96acdae846675 | |
parent | 50538a65e98d8de12300d35fb7cb34b61f611e25 (diff) | |
download | dotfiles-8fb0a744ec2f67873206a8e2c956edeac8236001.tar.gz dotfiles-8fb0a744ec2f67873206a8e2c956edeac8236001.tar.bz2 dotfiles-8fb0a744ec2f67873206a8e2c956edeac8236001.zip |
.brew: Install PHP 5.5
-rwxr-xr-x | .brew | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -26,7 +26,7 @@ brew install narwhal brew tap homebrew/dupes brew install homebrew/dupes/grep brew tap josegonzalez/homebrew-php -brew install php54 +brew install php55 # These two formulae didn’t work well last time I tried them: #brew install homebrew/dupes/vim @@ -54,11 +54,7 @@ brew tap phinze/homebrew-cask brew install brew-cask function installcask() { - if brew cask info "${@}" | grep "Not installed" > /dev/null; then - brew cask install "${@}" - else - echo "${@} is already installed." - fi + brew cask install "${@}" 2> /dev/null } installcask dropbox |