apply rule of silence to up/down cmds

This commit is contained in:
Callan Bryant 2020-11-19 22:57:02 +00:00
parent 0579b4cdd3
commit 08b8372148
No known key found for this signature in database
GPG Key ID: C31FA9DF3ACBFFAA

View File

@ -38,7 +38,6 @@ func ExitFail(format string, a ...interface{}) {
func ShellOut(command string, name string) {
if command != "" {
fmt.Printf("Running %s commands:\n %s", name, command)
shell := exec.Command("/bin/sh", "-c", command)
err := shell.Run()
if err != nil {