Skip to content

Commit b8c5ab5

Browse files
committed
fix(cache): reload file if compiled code is incompatible. Fixes #225
1 parent 4e3a973 commit b8c5ab5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lua/lazy/core/cache.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,10 @@ function M.load(modkey, modpath)
158158
entry.used = os.time()
159159
if M.eq(entry.hash, hash) then
160160
-- found in cache and up to date
161-
return loadstring(entry.chunk --[[@as string]], "@" .. entry.modpath)
161+
local chunk, err = loadstring(entry.chunk --[[@as string]], "@" .. entry.modpath)
162+
if not (err and err:find("cannot load incompatible bytecode", 1, true)) then
163+
return chunk, err
164+
end
162165
end
163166
else
164167
entry = { hash = hash, modpath = modpath, used = os.time() }

0 commit comments

Comments
 (0)