Bash: Add NPM bin directory to $PATH.

This commit is contained in:
Artem Sapegin 2012-12-06 17:53:49 +04:00
parent 3e011eb692
commit 7ced2299c8
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ export LANG="en_US"
# Extend $PATH
[ -d ~/bin ] && PATH="~/bin:$PATH"
[ -d /usr/local/share/npm/bin ] && PATH="/usr/local/share/npm/bin:$PATH"
PATH="/usr/local/bin:$PATH"
command -v brew >/dev/null 2>&1 && PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH"
export PATH