Skip to content

Commit

Permalink
[Refactor] Make the code a little bit cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDaveHello committed Mar 28, 2017
1 parent 7b253c8 commit 5b9fcb3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions nvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -297,15 +297,13 @@ nvm_ensure_version_installed() {
if [ "${EXIT_CODE}" != "0" ] || ! nvm_is_version_installed "${LOCAL_VERSION}"; then
if VERSION="$(nvm_resolve_alias "${PROVIDED_VERSION}")"; 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."
else
local PREFIXED_VERSION
PREFIXED_VERSION="$(nvm_ensure_version_prefix "${PROVIDED_VERSION}")"
nvm_err "N/A: version \"${PREFIXED_VERSION:-$PROVIDED_VERSION}\" is not yet installed."
nvm_err ""
nvm_err "You need to run \"nvm install ${PROVIDED_VERSION}\" to install it before using it."
fi
nvm_err ""
nvm_err "You need to run \"nvm install ${PROVIDED_VERSION}\" to install it before using it."
return 1
fi
}
Expand Down Expand Up @@ -726,8 +724,7 @@ nvm_resolve_alias() {
break
fi

if [ -n "${ALIAS_TEMP}" ] \
&& command printf "${SEEN_ALIASES}" | nvm_grep -e "^${ALIAS_TEMP}$" > /dev/null; then
if command printf "${SEEN_ALIASES}" | nvm_grep -e "^${ALIAS_TEMP}$" > /dev/null; then
ALIAS=""
break
fi
Expand Down

0 comments on commit 5b9fcb3

Please sign in to comment.