summaryrefslogtreecommitdiff
path: root/doRebuild.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 12:37:44 -0500
committerJeff Carr <[email protected]>2025-10-17 12:37:44 -0500
commit0b547c92363446bcaa05c30d1553aad288a3db59 (patch)
tree92c2eaa87606c6ad6d2c4a11f1022389cff2ad90 /doRebuild.go
parent7c95c8408ddf1fb9a05c4aa6d2b4de2b6648c4a9 (diff)
verbose build
Diffstat (limited to 'doRebuild.go')
-rw-r--r--doRebuild.go8
1 files 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")