[New] nvm install: Print the version that is being installed

This commit is contained in:
Peter Dave Hello
2016-11-06 20:43:47 +08:00
committed by Jordan Harband
parent f7763c8ba9
commit 9c92b5a4ea
2 changed files with 7 additions and 0 deletions

5
nvm.sh
View File

@@ -1581,6 +1581,11 @@ nvm_install_binary() {
local TMPDIR
local VERSION_PATH
local NODE_OR_IOJS
if [ "${FLAVOR}" = 'node' ]; then
NODE_OR_IOJS="${FLAVOR}"
fi
nvm_echo "Downloading and installing ${NODE_OR_IOJS-} ${VERSION}..."
TARBALL="$(nvm_download_artifact "${FLAVOR}" binary "${TYPE-}" "${VERSION}" | command tail -1)"
if [ -f "${TARBALL}" ]; then
TMPDIR="$(dirname "${TARBALL}")/files"