summaryrefslogtreecommitdiff
path: root/doBuild.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-09 04:31:10 -0500
committerJeff Carr <[email protected]>2025-10-09 04:31:10 -0500
commit98bb38d6999f94d507868247841d9b8d6eff8a75 (patch)
treef1dc35b0dad362e128d975d4b8a04247756838a2 /doBuild.go
parent0b646a20b812f337251c0ed950afeba9b97cfcc7 (diff)
cleaning up publish
Diffstat (limited to 'doBuild.go')
-rw-r--r--doBuild.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/doBuild.go b/doBuild.go
index 90b04c1..441ab97 100644
--- a/doBuild.go
+++ b/doBuild.go
@@ -56,14 +56,17 @@ func doInstall() error {
}
found.Append(check)
}
- me.forge.PrintForgedTable(found)
+ footer := me.forge.PrintForgedTable(found)
+ log.Info("Starting 'go install' on these repos:", footer)
if argv.DryRun {
- me.sh.GoodExit("")
+ return nil
}
me.forge.ConfigRill(16, 16)
+ os.Setenv("GO111MODULE", "off")
stats := me.forge.RunOnRepos(found, doInstallRepo)
+ os.Unsetenv("GO111MODULE")
for s, stat := range stats {
if stat.Err == nil {
continue