Merge pull request #235 from okuryu/fix-install

Remove `-e` option in `install.sh` script
master
Tim Caswell 2013-05-13 13:01:37 -07:00
commit 66633de1a9
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then
fi fi
echo "=> Append the following line to the correct file yourself" echo "=> Append the following line to the correct file yourself"
echo echo
echo -e "\t$SOURCE_STR" echo "\t$SOURCE_STR"
echo echo
echo "=> Close and reopen your terminal to start using NVM" echo "=> Close and reopen your terminal to start using NVM"
exit exit
@ -43,7 +43,7 @@ fi
if ! grep -qc 'nvm.sh' $PROFILE; then if ! grep -qc 'nvm.sh' $PROFILE; then
echo "=> Appending source string to $PROFILE" echo "=> Appending source string to $PROFILE"
echo -e "\n" >> "$PROFILE" echo "\n" >> "$PROFILE"
echo $SOURCE_STR >> "$PROFILE" echo $SOURCE_STR >> "$PROFILE"
else else
echo "=> Source string already in $PROFILE" echo "=> Source string already in $PROFILE"