diff options
Diffstat (limited to 'doBuild.go')
| -rw-r--r-- | doBuild.go | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |
