mirror of
https://github.com/lukechilds/zsh-nvm.git
synced 2025-06-05 11:56:28 +08:00
Fix upgrade issue
Remove the origin in the end of the check of the latest version in the repo
This commit is contained in:
parent
2d88fd5c8f
commit
2154739eb0
@ -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…
Reference in New Issue
Block a user