From 557653b34023515530d8c34b3ec19008ad6c1268 Mon Sep 17 00:00:00 2001 From: ethanwu10 Date: Mon, 7 Oct 2019 22:51:42 -0400 Subject: [PATCH] Update nvm repository URL (#56) nvm has moved to nvm-sh/nvm, update the git clone URL to match --- zsh-nvm.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh-nvm.plugin.zsh b/zsh-nvm.plugin.zsh index d3b23a4..cb08c08 100644 --- a/zsh-nvm.plugin.zsh +++ b/zsh-nvm.plugin.zsh @@ -18,7 +18,7 @@ _zsh_nvm_latest_release_tag() { _zsh_nvm_install() { echo "Installing nvm..." - git clone https://github.com/creationix/nvm.git "$NVM_DIR" + git clone https://github.com/nvm-sh/nvm.git "$NVM_DIR" $(cd "$NVM_DIR" && git checkout --quiet "$(_zsh_nvm_latest_release_tag)") }