Browse Source

Fix broken source commands in node module

Placing `--no-use` inside the quoted string results in source
attempting to load a file which literally ends with ` --no-use`
instead of passing --no-use as an argument.
master
Ehren Kret 3 years ago committed by Indrajit Raychaudhuri
parent
commit
bd0ce03473
  1. 4
      modules/node/init.zsh

4
modules/node/init.zsh

@ -24,13 +24,13 @@ elif (( $+commands[nodenv] )); then @@ -24,13 +24,13 @@ elif (( $+commands[nodenv] )); then
# Load manually installed NVM into the shell session.
elif [[ -s ${local_nvm::=$local_nvm_paths[1]} ]]; then
source "$local_nvm --no-use"
source "$local_nvm" --no-use
unset local_nvm{,_paths}
# Load package manager installed NVM into the shell session.
elif (( $+commands[brew] )) \
&& [[ -d "${nvm_prefix::="$(brew --prefix nvm 2> /dev/null)"}" ]]; then
source "$nvm_prefix/nvm.sh --no-use"
source "$nvm_prefix/nvm.sh" --no-use
unset nvm_prefix
# Return if requirements are not found.

Loading…
Cancel
Save