From fb1f59a91bd075d71b4e69ff771bafb74218cb60 Mon Sep 17 00:00:00 2001 From: Ethan Wu Date: Sun, 6 Oct 2019 14:07:57 -0400 Subject: [PATCH] Update nvm repository URL 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)") }