mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 06:57:34 +00:00
feat: match any revision
This commit is contained in:
parent
aea6fdb84b
commit
7e18ced2e6
1 changed files with 3 additions and 2 deletions
|
@ -249,9 +249,10 @@ function M.find_rockspec(plugin)
|
|||
local rockspec_file ---@type string?
|
||||
|
||||
local check_file = function(path, name)
|
||||
-- match package-(scm|git|dev)-[REV].rockspec
|
||||
for _, suffix in ipairs({ "scm", "git", "dev" }) do
|
||||
suffix = suffix .. "-1.rockspec"
|
||||
if name:sub(-#suffix) == suffix then
|
||||
pattern = suffix .. "%-%d+%.rockspec$"
|
||||
if name:find(pattern) then
|
||||
return path
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue