Using nvm_version_greater_than_or_equal_to instead of nvm_version_greater where it increases readability.

This commit is contained in:
Jordan Harband 2014-09-19 10:10:01 -07:00
parent 991fb85047
commit cb6456fd85

6
nvm.sh
View File

@ -217,9 +217,9 @@ nvm_prepend_path() {
nvm_binary_available() {
# binaries started with node 0.8.6
local LAST_VERSION_WITHOUT_BINARY
LAST_VERSION_WITHOUT_BINARY="0.8.5"
nvm_version_greater "$1" "$LAST_VERSION_WITHOUT_BINARY"
local FIRST_VERSION_WITH_BINARY
FIRST_VERSION_WITH_BINARY="0.8.6"
nvm_version_greater_than_or_equal_to "$1" "$FIRST_VERSION_WITH_BINARY"
}
nvm_ls_current() {