Skip to content

Commit 2e87520

Browse files
committed
fix(util): assume type is file when no type is returned by scandir. Fixes #306
1 parent e61b334 commit 2e87520

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/lazy/core/util.lua

+3
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ function M.ls(path, fn)
171171
local handle = vim.loop.fs_scandir(path)
172172
while handle do
173173
local name, t = vim.loop.fs_scandir_next(handle)
174+
-- HACK: assume type is a file if no type returned
175+
-- see https://github.com/folke/lazy.nvim/issues/306
176+
t = t or "file"
174177
if not name then
175178
break
176179
end

0 commit comments

Comments
 (0)