1
0
mirror of https://github.com/go-task/task.git synced 2025-04-02 22:15:30 +02:00
task/execext/exec_win.go
2017-04-12 20:32:56 -03:00

22 lines
426 B
Go

// +build windows
package execext
import (
"context"
"os/exec"
)
// NewCommand returns a new command that runs on "sh" is available or on "cmd"
// otherwise on Windows
func NewCommand(ctx context.Context, c string) *exec.Cmd {
if ShExists {
return newShCommand(ctx, c)
}
return newCmdCommand(ctx, c)
}
func newCmdCommand(ctx context.Context, c string) *exec.Cmd {
return exec.CommandContext(ctx, "cmd", "/C", c)
}