From 08b83721487892c27e9fc84426a364925852bb68 Mon Sep 17 00:00:00 2001 From: Callan Bryant Date: Thu, 19 Nov 2020 22:57:02 +0000 Subject: [PATCH] apply rule of silence to up/down cmds --- util.go | 1 - 1 file changed, 1 deletion(-) diff --git a/util.go b/util.go index a6b021a..7ab6c7f 100644 --- a/util.go +++ b/util.go @@ -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 {