updated output without special characters (tab; \t)
Omit duplicate 'finish line' normalized indentationmaster
parent
246caa8581
commit
7211c9ee29
|
@ -46,24 +46,25 @@ SOURCE_STR="[ -s \"$NVM_DIR/nvm.sh\" ] && . \"$NVM_DIR/nvm.sh\" # This loads NV
|
||||||
|
|
||||||
if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then
|
if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then
|
||||||
if [ -z $PROFILE ]; then
|
if [ -z $PROFILE ]; then
|
||||||
echo "=> Profile not found"
|
echo "=> Profile not found. Tried ~/.bash_profile ~/.zshrc and ~/.profile."
|
||||||
|
echo "=> Create one of them and run this script again"
|
||||||
else
|
else
|
||||||
echo "=> Profile $PROFILE not found"
|
echo "=> Profile $PROFILE not found"
|
||||||
|
echo "=> Create it (touch $PROFILE) and run this script again"
|
||||||
fi
|
fi
|
||||||
echo "=> Append the following line to the correct file yourself"
|
echo " OR"
|
||||||
|
echo "=> Append the following line to the correct file yourself:"
|
||||||
echo
|
echo
|
||||||
echo "\t$SOURCE_STR"
|
echo " $SOURCE_STR"
|
||||||
echo
|
echo
|
||||||
echo "=> Close and reopen your terminal to start using NVM"
|
else
|
||||||
exit
|
if ! grep -qc 'nvm.sh' $PROFILE; then
|
||||||
fi
|
|
||||||
|
|
||||||
if ! grep -qc 'nvm.sh' $PROFILE; then
|
|
||||||
echo "=> Appending source string to $PROFILE"
|
echo "=> Appending source string to $PROFILE"
|
||||||
echo "" >> "$PROFILE"
|
echo "" >> "$PROFILE"
|
||||||
echo $SOURCE_STR >> "$PROFILE"
|
echo $SOURCE_STR >> "$PROFILE"
|
||||||
else
|
else
|
||||||
echo "=> Source string already in $PROFILE"
|
echo "=> Source string already in $PROFILE"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "=> Close and reopen your terminal to start using NVM"
|
echo "=> Close and reopen your terminal to start using NVM"
|
||||||
|
|
25
install.sh
25
install.sh
|
@ -43,30 +43,25 @@ SOURCE_STR="[ -s \"$NVM_DIR/nvm.sh\" ] && . \"$NVM_DIR/nvm.sh\" # This loads NV
|
||||||
|
|
||||||
if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then
|
if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then
|
||||||
if [ -z $PROFILE ]; then
|
if [ -z $PROFILE ]; then
|
||||||
echo "=> Profile not found. Tried $HOME/.bash_profile and $HOME/.profile"
|
echo "=> Profile not found. Tried ~/.bash_profile ~/.zshrc and ~/.profile."
|
||||||
|
echo "=> Create one of them and run this script again"
|
||||||
else
|
else
|
||||||
echo "=> Profile $PROFILE not found"
|
echo "=> Profile $PROFILE not found"
|
||||||
|
echo "=> Create it (touch $PROFILE) and run this script again"
|
||||||
fi
|
fi
|
||||||
echo "=> Run this script again after running the following:"
|
echo " OR"
|
||||||
|
echo "=> Append the following line to the correct file yourself:"
|
||||||
echo
|
echo
|
||||||
echo "\ttouch $HOME/.profile"
|
echo " $SOURCE_STR"
|
||||||
echo
|
echo
|
||||||
echo "-- OR --"
|
else
|
||||||
echo
|
if ! grep -qc 'nvm.sh' $PROFILE; then
|
||||||
echo "=> Append the following line to the correct file yourself"
|
|
||||||
echo
|
|
||||||
echo "\t$SOURCE_STR"
|
|
||||||
echo
|
|
||||||
echo "=> Close and reopen your terminal afterwards to start using NVM"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! grep -qc 'nvm.sh' $PROFILE; then
|
|
||||||
echo "=> Appending source string to $PROFILE"
|
echo "=> Appending source string to $PROFILE"
|
||||||
echo "" >> "$PROFILE"
|
echo "" >> "$PROFILE"
|
||||||
echo $SOURCE_STR >> "$PROFILE"
|
echo $SOURCE_STR >> "$PROFILE"
|
||||||
else
|
else
|
||||||
echo "=> Source string already in $PROFILE"
|
echo "=> Source string already in $PROFILE"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "=> Close and reopen your terminal to start using NVM"
|
echo "=> Close and reopen your terminal to start using NVM"
|
||||||
|
|
Loading…
Reference in New Issue