1
0
mirror of https://github.com/go-task/task.git synced 2025-03-17 21:08:01 +02:00

Fix build on Windows

This commit is contained in:
Andrey Nering 2017-03-13 08:09:06 -03:00
parent 608d65f2b7
commit 419a74b018

View File

@ -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)
}