Last active
August 20, 2018 17:00
-
-
Save kjlape/970bea1b26e42eb6d0752d9235a99775 to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| set -e | |
| # Install brew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew update | |
| brew install rbenv | |
| brew install nodenv | |
| echo 'eval "$(nodenv init -)"' >> ~/.bash_profile | |
| brew install tmux | |
| brew install hub | |
| mkdir ~/.bin | |
| echo 'export PATH="$PATH:$HOME/.bin"' >> ~/.bash_profile | |
| curl https://gist.githubusercontent.com/pingortle/9c879b33dedb2f70ff7c896d7bd65c22/raw/4df583459fc8d1eddb91d05261453bea28e2725f/gloan.sh \ | |
| > ~/.bin/gloan && | |
| chmod +x ~/.bin/gloan | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment