Last active
December 17, 2015 18:29
-
-
Save ironchefpython/5653941 to your computer and use it in GitHub Desktop.
Cloud 9 Meteor post-install script
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
if ! grep meteor ~/.bashrc; then | |
echo export PATH=$PATH:~/.meteor >> ~/.bashrc | |
fi | |
for SCRIPT in meteor.js mongo_runner.js run.js server/server.js; do | |
chmod 644 ~/.meteor/tools/latest/tools/$SCRIPT | |
curl https://raw.github.com/ironchefpython/meteor/master/tools/$SCRIPT > ~/.meteor/tools/latest/tools/$SCRIPT | |
chmod 444 ~/.meteor/tools/latest/tools/$SCRIPT | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment