mirror of
https://github.com/opensiriusfox/bashrc.d.git
synced 2025-06-16 12:20:24 -07:00
13 lines
223 B
Bash
13 lines
223 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# echo 'prefix = ~/.node' > ~/.npmrc
|
|
#
|
|
|
|
if [[ -d ~/.node ]]; then
|
|
if [[ -d ~/.node/bin ]]; then
|
|
export PATH="$HOME/.node/bin:$PATH"
|
|
fi
|
|
export NODE_PATH="$HOME/.node/lib/node_modules:$NODE_PATH"
|
|
|
|
fi
|