Added support for brew taps

This commit is contained in:
Joshua Sherman 2014-02-11 23:22:25 -05:00
parent a2d7e874e1
commit 3b4b99e7ab

7
tilde
View file

@ -115,7 +115,12 @@ install_dotfiles()
;;
'brew')
brew install $package
if [[ $package == */* ]]
then
brew tap $package
else
brew install $package
fi
;;
'gem')