From 9205ff8001ccedb267e58d4ef6a395622174907a Mon Sep 17 00:00:00 2001 From: Ryuichi Okumura Date: Tue, 14 May 2013 00:05:53 +0900 Subject: [PATCH] Remove `-e` option in `install.sh` script The `sh` actually doesn't support `-e` option. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index ea746bf..e7eb7ec 100755 --- a/install.sh +++ b/install.sh @@ -35,7 +35,7 @@ if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then fi echo "=> Append the following line to the correct file yourself" echo - echo -e "\t$SOURCE_STR" + echo "\t$SOURCE_STR" echo echo "=> Close and reopen your terminal to start using NVM" exit @@ -43,7 +43,7 @@ fi if ! grep -qc 'nvm.sh' $PROFILE; then echo "=> Appending source string to $PROFILE" - echo -e "\n" >> "$PROFILE" + echo "\n" >> "$PROFILE" echo $SOURCE_STR >> "$PROFILE" else echo "=> Source string already in $PROFILE"