diff options
Diffstat (limited to 'build.go')
| -rw-r--r-- | build.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 } |
