mirror of https://github.com/folke/lazy.nvim.git
fix(git): when a `Plugin.branch` is set, don't use `config.defaults.version`. Fixes #409
This commit is contained in:
parent
c05d61d208
commit
bd37afc96e
|
@ -131,7 +131,8 @@ function M.get_target(plugin)
|
|||
commit = M.ref(plugin.dir, "tags/" .. plugin.tag),
|
||||
}
|
||||
end
|
||||
local version = plugin.version == nil and Config.options.defaults.version or plugin.version
|
||||
|
||||
local version = (plugin.version == nil and plugin.branch == nil) and Config.options.defaults.version or plugin.version
|
||||
if version then
|
||||
local last = Semver.last(M.get_versions(plugin.dir, version))
|
||||
if last then
|
||||
|
|
Loading…
Reference in New Issue