Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mseymour/5608645 to your computer and use it in GitHub Desktop.
Save mseymour/5608645 to your computer and use it in GitHub Desktop.
[2013-05-19 16:15:14] requirements_osx_brew_libs_install
requirements_osx_brew_libs_install ()
{
brew unlink "$@" && brew install "$@" || {
typeset ret=$?;
rvm_warn "There were package installation errors, make sure to read the log.
Check Homebrew requirements https://github.com/mxcl/homebrew/wiki/Installation";
case "$_system_version" in
10.6)
rvm_warn "On OSX 10.6 instead of command line tools install:
https://github.com/downloads/kennethreitz/osx-gcc-installer/GCC-10.6.pkg"
;;
esac;
return $ret
}
}
current path: /Users/mark
command(9): requirements_osx_brew_libs_install automake libtool libyaml readline libxml2 libxslt libksba openssl
Error: No such keg: /usr/local/Cellar/automake
There were package installation errors, make sure to read the log.
Check Homebrew requirements https://github.com/mxcl/homebrew/wiki/Installation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment