Remove print in tests

This commit is contained in:
Ingo Oppermann 2022-06-24 19:49:53 +02:00
parent 814e205ab5
commit a211de9850
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E

View File

@ -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)