Skip to content
Snippets Groups Projects
cmd.go 364 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"
)

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