node: support environment variables NVM_DIR and NODENV_ROOT
This commit is contained in:
parent
6ae2f39cc1
commit
61de4d199d
1 changed files with 4 additions and 4 deletions
|
@ -7,8 +7,8 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
# Load manually installed NVM into the shell session.
|
# Load manually installed NVM into the shell session.
|
||||||
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
|
if [[ -s "${NVM_DIR:=$HOME/.nvm}/nvm.sh" ]]; then
|
||||||
source "$HOME/.nvm/nvm.sh"
|
source "${NVM_DIR}/nvm.sh"
|
||||||
|
|
||||||
# Load package manager installed NVM into the shell session.
|
# Load package manager installed NVM into the shell session.
|
||||||
elif (( $+commands[brew] )) && \
|
elif (( $+commands[brew] )) && \
|
||||||
|
@ -17,8 +17,8 @@ elif (( $+commands[brew] )) && \
|
||||||
unset nvm_prefix
|
unset nvm_prefix
|
||||||
|
|
||||||
# Load manually installed nodenv into the shell session.
|
# Load manually installed nodenv into the shell session.
|
||||||
elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then
|
elif [[ -s "${NODENV_ROOT:=$HOME/.nodenv}/bin/nodenv" ]]; then
|
||||||
path=("$HOME/.nodenv/bin" $path)
|
path=("${NODENV_ROOT}/bin" $path)
|
||||||
eval "$(nodenv init - --no-rehash zsh)"
|
eval "$(nodenv init - --no-rehash zsh)"
|
||||||
|
|
||||||
# Load package manager installed nodenv into the shell session.
|
# Load package manager installed nodenv into the shell session.
|
||||||
|
|
Loading…
Add table
Reference in a new issue