mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
test: fix mkdir()
This commit is contained in:
parent
13b83a3ea2
commit
587490217e
@ -769,10 +769,10 @@ function module.read_nvim_log(logfile, ci_rename)
|
||||
end
|
||||
|
||||
--- @param path string
|
||||
--- @return string
|
||||
--- @return boolean?
|
||||
function module.mkdir(path)
|
||||
-- 493 is 0755 in decimal
|
||||
return uv.fs_mkdir(path, 493)
|
||||
return (uv.fs_mkdir(path, 493))
|
||||
end
|
||||
|
||||
return module
|
||||
|
Loading…
Reference in New Issue
Block a user