From 50b2a5e3b95638d76e30a7720a4eaac8d443a600 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 3 Oct 2025 06:50:40 -0500 Subject: better output --- build.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'build.go') 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 } -- cgit v1.2.3