Files
kapow/internal/cmd/runner.go
Roberto Abdelkader Martínez Pérez 0c16b5472f feat: run multiple init programs
- We log their outputs and status codes
- Windows is supported as well, leveraging cmd.exe /c

Co-authored-by: pancho horrillo <pancho.horrillo@bbva.com>
2020-12-24 14:03:25 +01:00

12 lines
124 B
Go

// +build !windows
package cmd
import (
"os/exec"
)
func BuildCmd(path string) *exec.Cmd {
return exec.Command(path)
}