Created
June 4, 2013 21:51
-
-
Save petejkim/5709932 to your computer and use it in GitHub Desktop.
Parse installer for Nitrous.IO boxes
This file contains 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 | |
TMP_FILE=/tmp/parse.tmp | |
if [ -e /tmp/parse.tmp ]; then | |
echo "Cleaning up from previous install failure" | |
rm -f /tmp/parse.tmp | |
fi | |
echo "Fetching latest version ..." | |
curl --progress-bar https://www.parse.com/downloads/cloud_code/parse -o /tmp/parse.tmp | |
if [ ! -d $HOME/.bin ]; then | |
echo "Making $HOME/.bin" | |
mkdir -p $HOME/.bin | |
fi | |
echo "Installing ..." | |
mv /tmp/parse.tmp $HOME/.bin/parse | |
chmod 755 $HOME/.bin/parse | |
echo "Adding $HOME/.bin to PATH" | |
HOMEBIN_PATH='export PATH=$HOME/.bin:$PATH' | |
if [ -e $HOME/.bash_profile ]; then | |
grep -Fqx "$HOMEBIN_PATH" $HOME/.bash_profile || echo $HOMEBIN_PATH >> .bash_profile | |
fi | |
if [ -e $HOME/.zshrc ]; then | |
grep -Fqx "$HOMEBIN_PATH" $HOME/.zshrc || echo $HOMEBIN_PATH >> .zshrc | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment