Skip to content

Instantly share code, notes, and snippets.

@ironchefpython
Last active December 17, 2015 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ironchefpython/5653941 to your computer and use it in GitHub Desktop.
Save ironchefpython/5653941 to your computer and use it in GitHub Desktop.
Cloud 9 Meteor post-install script
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