[Docs] fix fish load_nvm variable interpolations

legendecas 2022-03-28 23:28:53 +08:00
parent d157cac689
commit c367d7daa0
No known key found for this signature in database
GPG Key ID: CB3C9EC2BC27057C
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ function load_nvm --on-variable="PWD"
set -l nvmrc_node_version (nvm version (cat $nvmrc_path))
if test "$nvmrc_node_version" = "N/A"
nvm install (cat $nvmrc_path)
else if test nvmrc_node_version != node_version
else if test "$nvmrc_node_version" != "$node_version"
nvm use $nvmrc_node_version
end
else if test "$node_version" != "$default_node_version"