[Fix] install.sh: only un-interpolate $HOME for the profile source string.

Fixes #1384.
This commit is contained in:
Jordan Harband
2017-02-12 00:32:49 -08:00
parent affcc5087c
commit 6fc0241c21
2 changed files with 6 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ unset NVM_DIR
# NVM_DIR is not set
install_dir=$(nvm_install_dir)
[ "_$install_dir" = "_\$HOME/.nvm" ] || die "nvm_install_dir should default to \$HOME/.nvm. Current output: $install_dir"
[ "_$install_dir" = "_$HOME/.nvm" ] || die "nvm_install_dir should default to \$HOME/.nvm. Current output: $install_dir"
cleanup