From 71947488cf2e68126ff823bdc9f7325432e673f2 Mon Sep 17 00:00:00 2001 From: Nate Finch Date: Wed, 12 Aug 2020 16:59:58 -0400 Subject: [PATCH] Update sh/cmd.go --- sh/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/cmd.go b/sh/cmd.go index fc88d7ce..87bb37e6 100644 --- a/sh/cmd.go +++ b/sh/cmd.go @@ -135,7 +135,7 @@ func run(env map[string]string, stdout, stderr io.Writer, cmd string, args ...st var quoted []string for i := range args { - quoted=append(quoted,fmt.Sprintf("%q",args[i])); + quoted = append(quoted, fmt.Sprintf("%q", args[i])); } log.Println("exec:", cmd, strings.Join(quoted, " ")) err = c.Run()