Use more reliable method of fetching latest tag

This commit is contained in:
Alexander Tesfamichael 2018-12-15 14:28:15 +01:00
parent 2d88fd5c8f
commit c31c66b17e

View File

@ -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 && git describe --tags `git rev-list --tags --max-count=1`)
}
_zsh_nvm_install() {