Browse Source

Fix upgrade issue

Remove the origin in the end of the check of the latest version in the repo
pull/48/head
Sebastien 6 years ago
committed by GitHub
parent
commit
2154739eb0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      zsh-nvm.plugin.zsh

2
zsh-nvm.plugin.zsh

@ -13,7 +13,7 @@ _zsh_nvm_has() {
}
_zsh_nvm_latest_release_tag() {
echo $(cd "$NVM_DIR" && git fetch --quiet origin && git describe --abbrev=0 --tags --match "v[0-9]*" origin)
echo $(cd "$NVM_DIR" && git fetch --quiet origin && git describe --abbrev=0 --tags --match "v[0-9]*")
}
_zsh_nvm_install() {

Loading…
Cancel
Save