Skip to content

Commit

Permalink
Revert "fix(#111): resolve windows executable paths"
Browse files Browse the repository at this point in the history
  • Loading branch information
barrett-ruth authored Jan 12, 2024
1 parent 192fd1d commit 260a280
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 260a280

Please sign in to comment.