Skip to content
Snippets Groups Projects
cmd.go 449 B
Newer Older
Florent Aide's avatar
Florent Aide committed
package runner

import (
Florent Aide's avatar
Florent Aide committed
	"github.com/go-cmd/cmd"
)

// RunCMD runs the given cmd and returns its stdout, stderr and
// an eventual error
func RunCMD(c *cmd.Cmd) (stdout, stderr []string, err error) {
Florent Aide's avatar
Florent Aide committed
	statusChan := c.Start()
	status := <-statusChan
	if status.Error != nil || status.Exit > 0 {
		return status.Stdout, status.Stderr, fmt.Errorf("cannot execute command: %w", err)
Florent Aide's avatar
Florent Aide committed
	}
	stdout = status.Stdout
	stderr = status.Stderr
	return
}