Skip to content

Commit 79f85e5

Browse files
committed
fix(cache): add hack to work-around incorrect requires back. Not a fan of this. Fixes #603
1 parent 7722378 commit 79f85e5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lua/lazy/core/cache.lua

+6
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,12 @@ function Cache.find(modname, opts)
231231
local basename = modname:gsub("%.", "/")
232232
local idx = modname:find(".", 1, true)
233233

234+
-- HACK: fix incorrect require statements. Really not a fan of keeping this
235+
if idx == 1 then
236+
modname = modname:gsub("^%.+", "")
237+
basename = modname:gsub("%.", "/")
238+
idx = modname:find(".", 1, true)
239+
end
234240
local topmod = idx and modname:sub(1, idx - 1) or modname
235241

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

0 commit comments

Comments
 (0)