summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")