Skip to content

Commit 1371a14

Browse files
committed
fix(build): use the shell to execute build commands
1 parent ffabe91 commit 1371a14

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lua/lazy/manage/task/plugin.lua

+5-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ M.build = {
2323
elseif type(build) == "function" then
2424
build()
2525
else
26-
local args = vim.split(build, "%s+")
27-
return self:spawn(table.remove(args, 1), {
28-
args = args,
26+
local shell = vim.env.SHELL or vim.o.shell
27+
local shell_args = shell:find("cmd.exe", 1, true) and "/c" or "-c"
28+
29+
return self:spawn(shell, {
30+
args = { shell_args, build },
2931
cwd = self.plugin.dir,
3032
})
3133
end

0 commit comments

Comments
 (0)