Skip to content

Commit afcba52

Browse files
committed
fix: return nil when fs_stat fails and return nil in module loader
1 parent 756b484 commit afcba52

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lua/lazy/core/cache.lua

+6-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ function M.loader(modname)
6565
if entry then
6666
M.check_load(modname, entry.modpath)
6767
entry.used = os.time()
68-
local hash = assert(M.hash(entry.modpath))
68+
local hash = M.hash(entry.modpath)
69+
if not hash then
70+
return
71+
end
6972
if M.eq(entry.hash, hash) then
7073
-- found in cache and up to date
7174
chunk, err = load(entry.chunk --[[@as string]], "@" .. entry.modpath)
@@ -155,7 +158,8 @@ end
155158

156159
---@return CacheHash?
157160
function M.hash(file)
158-
return uv.fs_stat(file)
161+
local ok, ret = pcall(uv.fs_stat, file)
162+
return ok and ret or nil
159163
end
160164

161165
---@param h1 CacheHash

0 commit comments

Comments
 (0)