rename NVM_MIN_VER to NVM_MIN

since nvm is all about versions, so no need for the explicit suffix.
This commit is contained in:
ryenus
2024-06-30 01:50:15 +08:00
parent 03aea1ad61
commit 9d0735dc7f
2 changed files with 14 additions and 14 deletions

2
nvm.sh
View File

@@ -1883,7 +1883,7 @@ nvm_print_versions() {
fi
command awk \
-v remote_versions="$(printf '%s' "${1-}" | tr '\n' '|')" -v min_ver="${NVM_MIN_VER:-v0}" \
-v remote_versions="$(printf '%s' "${1-}" | tr '\n' '|')" -v min_ver="${NVM_MIN:-v0}" \
-v installed_versions="$(nvm_ls | tr '\n' '|')" -v current="$NVM_CURRENT" \
-v installed_color="$INSTALLED_COLOR" -v system_color="$SYSTEM_COLOR" \
-v current_color="$CURRENT_COLOR" -v default_color="$DEFAULT_COLOR" \