mirror of
https://github.com/go-task/task.git
synced 2025-08-08 22:36:57 +02:00
Fix build on Windows
This commit is contained in:
@ -15,6 +15,6 @@ func NewCommand(c string) *exec.Cmd {
|
|||||||
return newCmdCommand(c)
|
return newCmdCommand(c)
|
||||||
}
|
}
|
||||||
|
|
||||||
func newCmdCommand(c string) {
|
func newCmdCommand(c string) *exec.Cmd {
|
||||||
return exec.Command("cmd", "/C", c)
|
return exec.Command("cmd", "/C", c)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user