From 8c415947df3ed66ec4207266b457136e30263568 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 9 Mar 2024 22:02:53 -0600 Subject: [PATCH] add debugging output for now --- common.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.go b/common.go index debea4f..d913598 100644 --- a/common.go +++ b/common.go @@ -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()