Skip to content

Commit

Permalink
bash: support npm-global directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhoy committed Dec 18, 2021
1 parent 037836e commit 000711a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bash/env
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,9 @@ fi

# source "bash_local" if it exists
if [ -f ~/.bash_local ]; then
. ~/.bash_local
. ~/.bash_local
fi

if [ -d ~/.npm-global ]; then
export PATH=~/.npm-global/bin:$PATH
fi

0 comments on commit 000711a

Please sign in to comment.