Browse Source

Make `nvm upgrade` follow the official git upgrade instructions from nvm (#46)

https://github.com/creationix/nvm#manual-upgrade
pull/56/head
Bartosz Legięć 6 years ago
committed by Luke Childs
parent
commit
9ae1115e76
  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 --tags origin && git describe --abbrev=0 --tags --match "v[0-9]*" $(git rev-list --tags --max-count=1))
}
_zsh_nvm_install() {

Loading…
Cancel
Save