Skip to content

Instantly share code, notes, and snippets.

@lurraca
Created May 18, 2020 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lurraca/d7d75e37ee7ba28b718798fae796bee2 to your computer and use it in GitHub Desktop.
Save lurraca/d7d75e37ee7ba28b718798fae796bee2 to your computer and use it in GitHub Desktop.
ensure_brew_exists() {
echo "Ensuring brew exists..."
if [[ ! -x /usr/local/bin/brew ]] ; then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment