Skip to content

Commit e916f41

Browse files
committed
fix(cache): hack to work around plugins trying to load relatve modules. Fixes #543
1 parent 4a0857c commit e916f41

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lua/lazy/core/cache.lua

+8
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,14 @@ function Cache.find(modname, opts)
230230
modname = modname:gsub("/", ".")
231231
local basename = modname:gsub("%.", "/")
232232
local idx = modname:find(".", 1, true)
233+
234+
-- HACK: some plugins try to load invalid relative paths (see #543)
235+
if idx == 1 then
236+
modname = modname:gsub("^%.+", "")
237+
basename = modname:gsub("%.", "/")
238+
idx = modname:find(".", 1, true)
239+
end
240+
233241
local topmod = idx and modname:sub(1, idx - 1) or modname
234242

235243
-- OPTIM: search for a directory first when topmod == modname

0 commit comments

Comments
 (0)