Skip to content

Commit

Permalink
minor correction on the right npm path (#618)
Browse files Browse the repository at this point in the history
* minor correction to the right npm path

* minor correction to the right npm path
  • Loading branch information
peijiche authored and mistercrunch committed Jun 15, 2016
1 parent ea8a7ec commit 5de8740
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,10 @@ echo prefix=~/.npm-packages >> ~/.npmrc
curl -L https://www.npmjs.com/install.sh | sh
```

The final step is to add
`~/.node/bin` to your `PATH` so commands you install globally are usable.
Add something like this to your `.bashrc` file.
The final step is to add `~/.npm-packages/bin` to your `PATH` so commands you install globally are usable.
Add something like this to your `.bashrc` file, then `source ~/.bashrc` to reflect the change.
```
export PATH="$HOME/.node/bin:$PATH"
export PATH="$HOME/.npm-packages/bin:$PATH"
```

#### npm packages
Expand Down

0 comments on commit 5de8740

Please sign in to comment.