Skip to content

Commit 7a89902

Browse files
committed
1 parent e2f7f90 commit 7a89902

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lua/mason-core/fs.lua

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ local function make_module(uv)
99
---@param path string
1010
function M.fstat(path)
1111
log.trace("fs: fstat", path)
12-
local fd = uv.fs_open(path, "r", 438)
12+
local ok, fd = pcall(uv.fs_open, path, "r", 438)
13+
if ok == false then
14+
error(fd)
15+
end
16+
if fd == nil then
17+
error(fd)
18+
end
1319
local fstat = uv.fs_fstat(fd)
1420
uv.fs_close(fd)
1521
return fstat

0 commit comments

Comments
 (0)