mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00
Consolidate faster default alias lookup, and use that explicit version to avoid a second default alias lookup in nvm use default
.
Related to #709.
This commit is contained in:
parent
9fc20bb14b
commit
96e73825bd
6
nvm.sh
6
nvm.sh
@ -1716,15 +1716,15 @@ nvm_supports_source_options() {
|
||||
[ "_$(echo 'echo $1' | . /dev/stdin yes 2> /dev/null)" = "_yes" ]
|
||||
}
|
||||
|
||||
if nvm_supports_source_options && [ "_$1" = "_--install" ]; then
|
||||
VERSION="$(nvm_alias default 2>/dev/null)"
|
||||
if nvm_supports_source_options && [ "_$1" = "_--install" ]; then
|
||||
if [ -n "$VERSION" ]; then
|
||||
nvm install "$VERSION" >/dev/null
|
||||
elif nvm_rc_version >/dev/null 2>&1; then
|
||||
nvm install >/dev/null
|
||||
fi
|
||||
elif nvm_alias default >/dev/null 2>&1; then
|
||||
nvm use default >/dev/null
|
||||
elif [ -n "$VERSION" ]; then
|
||||
nvm use "$VERSION" >/dev/null
|
||||
elif nvm_rc_version >/dev/null 2>&1; then
|
||||
nvm use >/dev/null
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user