[Fix] `nvm install`: Handle 'N/A' version instead of asking to install it

Fixes #1304.
Peter Dave Hello 2016-11-14 19:31:35 +08:00 committed by Jordan Harband
parent 03608291a6
commit 8c03637023
No known key found for this signature in database
GPG Key ID: 64A196AEE0916D55
1 changed files with 6 additions and 2 deletions

8
nvm.sh
View File

@ -2626,10 +2626,14 @@ nvm() {
fi
return 8
fi
if [ "${VERSION}" = 'N/A' ]; then
nvm_err "N/A: version \"${PROVIDED_VERSION} -> ${VERSION}\" is not yet installed."
nvm_err ""
nvm_err "You need to run \"nvm install ${PROVIDED_VERSION}\" to install it before using it."
return 3
# This nvm_ensure_version_installed call can be a performance bottleneck
# on shell startup. Perhaps we can optimize it away or make it faster.
if ! nvm_ensure_version_installed "${VERSION}"; then
elif ! nvm_ensure_version_installed "${VERSION}"; then
return $?
fi