Skip to content

Commit

Permalink
Merge pull request #135 from nvimdev/revert-126-windows-exepath
Browse files Browse the repository at this point in the history
Revert "fix(#111): resolve windows executable paths"
  • Loading branch information
barrett-ruth authored Jan 12, 2024
2 parents 192fd1d + 260a280 commit 6a27c57
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lua/guard/spawn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ local function spawn(opt)
end)
end

local cmd = vim.fn.exepath(opt.cmd)
handle = uv.spawn(cmd, {
handle = uv.spawn(opt.cmd, {
stdio = { stdin, stdout, stderr },
args = opt.args,
cwd = opt.cwd,
Expand Down

0 comments on commit 6a27c57

Please sign in to comment.