Skip to content

Commit

Permalink
Update sh/cmd.go
Browse files Browse the repository at this point in the history
  • Loading branch information
natefinch committed Aug 12, 2020
1 parent 2b62f93 commit 7194748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sh/cmd.go
Expand Up @@ -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()
Expand Down

0 comments on commit 7194748

Please sign in to comment.