fix(git): when a `Plugin.branch` is set, don't use `config.defaults.version`. Fixes #409

This commit is contained in:
Folke Lemaitre 2023-01-17 13:14:25 +01:00
parent c05d61d208
commit bd37afc96e
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 2 additions and 1 deletions

View File

@ -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