Skip to content

Commit

Permalink
chore(checkhealth): add /private/tmp to problematic paths
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Sep 25, 2024
1 parent 1f967c0 commit 595f81f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/neotest-golang/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function M.is_problematic_path()
go_mod_filepath = lib.find.file_upwards("go.mod", start_path)
local sysname = vim.uv.os_uname().sysname
local problematic_paths = {
Darwin = { "/tmp", vim.fs.normalize("~/Public") },
Darwin = { "/private/tmp", "/tmp", vim.fs.normalize("~/Public") },
Linux = { "/tmp" },
}
if problematic_paths[sysname] == nil then
Expand Down

0 comments on commit 595f81f

Please sign in to comment.