more typechecking

This commit is contained in:
Barrett Ruth 2025-09-15 14:11:12 -04:00
parent 17cdbf0a50
commit b3ffef7341
4 changed files with 15 additions and 35 deletions

View file

@ -41,8 +41,8 @@ local function set_platform(platform)
end
state.platform = platform
vim.fn.mkdir("build", "p")
vim.fn.mkdir("io", "p")
vim.fs.mkdir("build", { parents = true })
vim.fs.mkdir("io", { parents = true })
return true
end