10 lines
166 B
Bash
10 lines
166 B
Bash
|
# === nodebrew ===
|
||
|
case ${OSTYPE} in
|
||
|
*)
|
||
|
if [ -e /${HOME}/.nodebrew/nodebrew ]; then
|
||
|
PATH=${HOME}/.nodebrew/current/bin:${PATH}
|
||
|
export PATH
|
||
|
fi
|
||
|
;;
|
||
|
esac
|