From a8bfc705a7d7f6fc12ac1581f26c401d7c0871a1 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 8 Jul 2016 22:41:04 +0100 Subject: [PATCH] Notify user when nvm is being installed --- zsh-nvm.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh-nvm.plugin.zsh b/zsh-nvm.plugin.zsh index 76d12c8..f69d27c 100644 --- a/zsh-nvm.plugin.zsh +++ b/zsh-nvm.plugin.zsh @@ -19,6 +19,7 @@ _zsh_nvm_latest_release_tag() { } _zsh_nvm_install() { + echo "Installing nvm..." git clone https://github.com/creationix/nvm.git "$NVM_DIR" $(cd "$NVM_DIR" && git checkout --quiet "$(_zsh_nvm_latest_release_tag)") }