From 7ced2299c80fd80c5c1b3a9c773b3a809b130783 Mon Sep 17 00:00:00 2001 From: Artem Sapegin Date: Thu, 6 Dec 2012 17:53:49 +0400 Subject: [PATCH] Bash: Add NPM bin directory to $PATH. --- tilde/bash_profile.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/tilde/bash_profile.bash b/tilde/bash_profile.bash index 8e65d89..e0d146d 100644 --- a/tilde/bash_profile.bash +++ b/tilde/bash_profile.bash @@ -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