Created
June 4, 2014 11:46
-
-
Save mlocher/1f872bd9842a5c7ad136 to your computer and use it in GitHub Desktop.
setup_meteor
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 | |
curl https://install.meteor.com > ./install_meteor | |
sed -i'' -e 's/PREFIX=.*/PREFIX="$HOME"/g' ./install_meteor | |
chmod u+x ./install_meteor | |
./install_meteor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!