package install import "os/exec" func runCmd(name string, arg ...string) error { c := exec.Command(name, arg...) return c.Run() }