Skip to content

Commit 9ca3222

Browse files
committed
fix(cache): lsmod now also supports lua libs. Fixes #544
1 parent 78264fb commit 9ca3222

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

lua/lazy/core/cache.lua

+10-7
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,13 @@ end
129129
function Cache.loader(modname)
130130
local start = uv.hrtime()
131131
local modpath, hash = Cache.find(modname)
132-
---@type function?, string?
133-
local chunk, err
134132
if modpath then
135-
chunk, err = M.load(modpath, { hash = hash })
133+
local chunk, err = M.load(modpath, { hash = hash })
134+
M.track("loader", start)
135+
return chunk or error(err)
136136
end
137137
M.track("loader", start)
138-
return chunk or err or "module " .. modname .. " not found"
138+
return "\nlazy_loader: module " .. modname .. " not found"
139139
end
140140

141141
---@param modname string
@@ -154,10 +154,10 @@ function Cache.loader_lib(modname)
154154
local funcname = dash and modname:sub(dash + 1) or modname
155155
local chunk, err = package.loadlib(modpath, "luaopen_" .. funcname:gsub("%.", "_"))
156156
M.track("loader_lib", start)
157-
return chunk or err
157+
return chunk or error(err)
158158
end
159159
M.track("loader_lib", start)
160-
return "module " .. modname .. " not found"
160+
return "\nlazy_loader_lib: module " .. modname .. " not found"
161161
end
162162

163163
---@param filename? string
@@ -337,8 +337,11 @@ function M.lsmod(path)
337337
t = t or uv.fs_stat(path .. "/" .. name).type
338338
---@type string
339339
local topname
340-
if name:sub(-4) == ".lua" then
340+
local ext = name:sub(-4)
341+
if ext == ".lua" or ext == ".dll" then
341342
topname = name:sub(1, -5)
343+
elseif name:sub(-3) == ".so" then
344+
topname = name:sub(1, -4)
342345
elseif t == "link" or t == "directory" then
343346
topname = name
344347
end

0 commit comments

Comments
 (0)