From 0b547c92363446bcaa05c30d1553aad288a3db59 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 17 Oct 2025 12:37:44 -0500 Subject: verbose build --- doRebuild.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doRebuild.go b/doRebuild.go index 9350e66..648ed0f 100644 --- a/doRebuild.go +++ b/doRebuild.go @@ -74,20 +74,20 @@ func doRebuildPart1() (string, error) { log.Info("download here") if path, err := fhelp.CheckCmd("goimports"); err != nil { log.Info("go-clone missing", path, err) - cmd := []string{"go", "install", "golang.org/x/tools/cmd/goimports@latest"} + cmd := []string{"go", "install", "-v", "-x", "golang.org/x/tools/cmd/goimports@latest"} shell.RunRealtime(cmd) } if path, err := fhelp.CheckCmd("go-clone"); err != nil { log.Info("go-clone missing", path, err) - cmd := []string{"go", "install", "go.wit.com/apps/go-clone@latest"} + cmd := []string{"go", "install", "-v", "-x", "go.wit.com/apps/go-clone@latest"} shell.RunRealtime(cmd) } if _, err := fhelp.CheckCmd("autogenpb"); err != nil { - cmd := []string{"go", "install", "go.wit.com/apps/autogenpb@latest"} + cmd := []string{"go", "install", "-v", "-x", "go.wit.com/apps/autogenpb@latest"} shell.RunRealtime(cmd) } if _, err := fhelp.CheckCmd("go-mod-clean"); err != nil { - cmd := []string{"go", "install", "go.wit.com/apps/go-mod-clean@latest"} + cmd := []string{"go", "install", "-v", "-x", "go.wit.com/apps/go-mod-clean@latest"} shell.RunRealtime(cmd) } return "part1", errors.New("probably failed. notsure") -- cgit v1.2.3