Last active
August 29, 2015 14:14
-
-
Save stevepereira/d9f4f10bb9cee08b7275 to your computer and use it in GitHub Desktop.
curl -sSL http://j.mp/mac-xn | bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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