From 49d47467a4ac79996265a985c5d3a40290eae16e Mon Sep 17 00:00:00 2001 From: tobiaslieber <14908876+tobiaslieber@users.noreply.github.com> Date: Mon, 13 Mar 2023 22:25:34 +0100 Subject: [PATCH] fix path --- lua/lazy/core/cache.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazy/core/cache.lua b/lua/lazy/core/cache.lua index c9313cd..22e09c3 100644 --- a/lua/lazy/core/cache.lua +++ b/lua/lazy/core/cache.lua @@ -341,7 +341,7 @@ function M.lsmod(path) break end -- HACK: type is not always returned due to a bug in luv - t = t or uv.fs_stat(path .. "/" .. name).type + t = t or uv.fs_stat(path .. "/lua/" .. name).type ---@type string local topname local ext = name:sub(-4)