Remove print in tests
This commit is contained in:
parent
814e205ab5
commit
a211de9850
1 changed files with 0 additions and 2 deletions
|
|
@ -10,8 +10,6 @@ func BuildBinary(name, pathprefix string) (string, error) {
|
||||||
dir := filepath.Join(pathprefix, name)
|
dir := filepath.Join(pathprefix, name)
|
||||||
aout := filepath.Join(dir, name)
|
aout := filepath.Join(dir, name)
|
||||||
|
|
||||||
fmt.Printf("aout: %s\n", aout)
|
|
||||||
|
|
||||||
err := exec.Command("go", "build", "-o", aout, dir).Run()
|
err := exec.Command("go", "build", "-o", aout, dir).Run()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("build command: %w", err)
|
return "", fmt.Errorf("build command: %w", err)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue