Skip to content

Commit

Permalink
chore: remove log.Println from cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Voltaire committed Dec 23, 2021
1 parent 2f1ec40 commit 914d79f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sh/cmd.go
Expand Up @@ -4,7 +4,6 @@ import (
"bytes"
"fmt"
"io"
"log"
"os"
"os/exec"
"strings"
Expand Down Expand Up @@ -137,7 +136,6 @@ func run(env map[string]string, stdout, stderr io.Writer, cmd string, args ...st
for i := range args {
quoted = append(quoted, fmt.Sprintf("%q", args[i]));
}
log.Println("exec:", cmd, strings.Join(quoted, " "))
err = c.Run()
return CmdRan(err), ExitStatus(err), err
}
Expand Down

0 comments on commit 914d79f

Please sign in to comment.