Use NVM_DIR in installation instructions

As suggested by @ljharb, this might be a little cleaner. I'm not
entirely sure, but in any case, it is consistent with the upgrade
instructions, so that is nice.
Joe Lencioni 2016-07-28 10:11:28 -07:00
parent 54476476ab
commit 6eef4ce4d2
1 changed files with 4 additions and 4 deletions

View File

@ -88,11 +88,11 @@ Or if you have `git` installed:
1. activate nvm by sourcing it from your shell
```sh
(
git clone https://github.com/creationix/nvm.git ~/.nvm
cd ~/.nvm
export NVM_DIR="$HOME/.nvm" && (
git clone https://github.com/creationix/nvm.git "$NVM_DIR"
cd "$NVM_DIR"
git checkout `git describe --abbrev=0 --tags --match "v[0-9]*" origin`
) && . ~/.nvm/nvm.sh
) && . "$NVM_DIR/nvm.sh"
```
Add these lines to your `~/.bashrc`, `~/.profile`, or `~/.zshrc` file to have it automatically sourced upon login: