Skip to content

Instantly share code, notes, and snippets.

@stevepereira
Last active August 29, 2015 14:14
Show Gist options
  • Save stevepereira/d9f4f10bb9cee08b7275 to your computer and use it in GitHub Desktop.
Save stevepereira/d9f4f10bb9cee08b7275 to your computer and use it in GitHub Desktop.
curl -sSL http://j.mp/mac-xn | bash
#!/usr/bin/env bash
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "+------------------------------+"
echo "| Running xnlogic Install |"
echo "+------------------------------+"
elif [[ "$OSTYPE" == "linux-gnu" ]]; then
echo "Please contact us for Linux install instructions! This script is not compatible with Linux"
exit 1
elif [[ "$OSTYPE" == "msys" ]]; then
echo "Please see http://j.mp/xninstall for Windows install steps"
exit 1
else
echo "No compatible OS found! Exiting..."
exit 1
fi
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install caskroom/cask/brew-cask
brew cask install vagrant virtualbox
gem install xnlogic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment