Skip to content

Commit

Permalink
Remove execute log output
Browse files Browse the repository at this point in the history
  • Loading branch information
bitflipp committed Mar 13, 2022
1 parent 74b3060 commit 8626ebe
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package main

import (
"io"
"log"
"os"
"os/exec"
"path"
Expand All @@ -12,7 +11,6 @@ import (
func execute(in io.Reader, n string, args ...string) (string, int, error) {
cmd := exec.Command(n, args...)
cmd.Stdin = in
log.Printf("executing: %s", cmd)
b, err := cmd.CombinedOutput()
if err != nil {
eerr, ok := err.(*exec.ExitError)
Expand Down

0 comments on commit 8626ebe

Please sign in to comment.