`install.sh`: detect a defined but nonexistent $NVM_DIR

(ref: #1700)
Jordan Harband 2018-01-06 09:34:11 -08:00
parent 9273f23bc8
commit 7cba6cd6d0
No known key found for this signature in database
GPG Key ID: 64A196AEE0916D55
1 changed files with 5 additions and 1 deletions

View File

@ -294,6 +294,10 @@ nvm_check_global_modules() {
}
nvm_do_install() {
if [ -n "${NVM_DIR-}" ] && ! [ -d "${NVM_DIR}" ]; then
echo >&2 "You have \$NVM_DIR set to \"${NVM_DIR}\", but that directory does not exist. Check your profile files and environment."
exit 1
fi
if [ -z "${METHOD}" ]; then
# Autodetect install method
if nvm_has git; then