This commit is contained in:
Erik Lilja 2025-03-02 12:17:09 +02:00 committed by GitHub
commit 78c0edb505
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -106,6 +106,9 @@ function M:add(plugin)
-- short url / ref
if plugin[1] then
if type(plugin[1]) ~= "string" then
return self.spec:error("Invalid plugin spec " .. vim.inspect(plugin))
end
local slash = plugin[1]:find("/", 1, true)
if slash then
local prefix = plugin[1]:sub(1, 4)