diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go index 90019f26..0a6ac32d 100644 --- a/internal/testhelper/testhelper.go +++ b/internal/testhelper/testhelper.go @@ -10,8 +10,6 @@ func BuildBinary(name, pathprefix string) (string, error) { dir := filepath.Join(pathprefix, name) aout := filepath.Join(dir, name) - fmt.Printf("aout: %s\n", aout) - err := exec.Command("go", "build", "-o", aout, dir).Run() if err != nil { return "", fmt.Errorf("build command: %w", err)