From 419a74b018f404fa6a74a9c059c5b10b7396890a Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Mon, 13 Mar 2017 08:09:06 -0300 Subject: [PATCH] Fix build on Windows --- execext/exec_win.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execext/exec_win.go b/execext/exec_win.go index 3054dcda..885fff8b 100644 --- a/execext/exec_win.go +++ b/execext/exec_win.go @@ -15,6 +15,6 @@ func NewCommand(c string) *exec.Cmd { return newCmdCommand(c) } -func newCmdCommand(c string) { +func newCmdCommand(c string) *exec.Cmd { return exec.Command("cmd", "/C", c) }