mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 05:48:01 +00:00
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.
This commit is contained in:
parent
7052e2a002
commit
53033bc5d9
@ -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…
Reference in New Issue
Block a user