summaryrefslogtreecommitdiff
path: root/build.go
diff options
context:
space:
mode:
Diffstat (limited to 'build.go')
-rw-r--r--build.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.go b/build.go
index fa04557..a234065 100644
--- a/build.go
+++ b/build.go
@@ -133,8 +133,7 @@ func (f *Forge) doBuild(repo *gitpb.Repo, userFlags []string, goWhat string) err
} else {
log.Info("GO111MODULE=", testenv, "f.goWork =", f.IsGoWork())
}
- log.Info("running:", repo.FullPath)
- log.Info("running:", cmd)
+ log.Infof("Run: %s %v\n", repo.FullPath, cmd)
result := repo.RunRealtime(cmd)
if result.Exit != 0 {
// build failed
@@ -166,7 +165,7 @@ func (f *Forge) doBuild(repo *gitpb.Repo, userFlags []string, goWhat string) err
repo.Run(cmd)
}
}
- log.Info(strings.Join(result.Stdout, "\n"))
+ // log.Info(strings.Join(result.Stdout, "\n"))
return nil
}