diff options
| author | Jeff Carr <[email protected]> | 2024-03-09 22:02:53 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-03-09 22:02:53 -0600 |
| commit | 8c415947df3ed66ec4207266b457136e30263568 (patch) | |
| tree | 0a8197eb50fa5637d6db02c3fc1daf26e4f5ec59 | |
| parent | 06904e11588c9db3ae4289da3ea4e131568fa1a8 (diff) | |
add debugging output for nowv0.22.4
| -rw-r--r-- | common.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -205,10 +205,12 @@ func (rl *RepoList) MakeGoWork() error { if repo.Status.GoPath() == "" { // skip repos that aren't go // todo: handle non-flat repos? + log.Info("SKIPPED REPO", repo.Status.Path()) continue } if repo.Status.Exists("go.mod") { fmt.Fprintln(f, "\t"+repo.Status.GoPath()) + log.Info("ADDING REPO", goSrcDir, repo.Status.GoPath()) } else { log.Log(REPO, "missing go.mod for", repo.Status.Path()) // repo.Status.MakeRedomod() |
