Browse Source

Use a tighter `grep` to avoid `dnvm.sh` conflicts.

Fixes #838.
Jordan Harband 10 years ago
parent
commit
6e894520ec
  1. 2
      install.sh

2
install.sh

@ -240,7 +240,7 @@ nvm_do_install() {
printf "$SOURCE_STR" printf "$SOURCE_STR"
echo echo
else else
if ! grep -qc 'nvm.sh' "$NVM_PROFILE"; then if ! command grep -qc '/nvm.sh' "$NVM_PROFILE"; then
echo "=> Appending source string to $NVM_PROFILE" echo "=> Appending source string to $NVM_PROFILE"
printf "$SOURCE_STR\n" >> "$NVM_PROFILE" printf "$SOURCE_STR\n" >> "$NVM_PROFILE"
else else

Loading…
Cancel
Save