diff options
| author | Jeff Carr <[email protected]> | 2025-01-29 20:00:49 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-29 20:00:49 -0600 |
| commit | f146bf4ef00d86abe704af9aa6aea9a84f9904a4 (patch) | |
| tree | 0600e507c0369c72c677c219d02b34af9339b11a /humanShowRepo.go | |
| parent | d9d90e9e124d87731864b0f47374b6682ccde713 (diff) | |
quiet lots of debugging output
Diffstat (limited to 'humanShowRepo.go')
| -rw-r--r-- | humanShowRepo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/humanShowRepo.go b/humanShowRepo.go index d55b7c8..c6950ca 100644 --- a/humanShowRepo.go +++ b/humanShowRepo.go @@ -86,7 +86,7 @@ func (f *Forge) testGoRepo(check *gitpb.Repo) { data, _ := os.ReadFile(filepath.Join(check.FullPath, "go.mod")) log.Info(string(data)) - if f.FinalGoDepsCheckOk(check, true) { + if err := f.FinalGoDepsCheckOk(check, true); err == nil { log.Info("forge.FinalGoDepsCheck(check) worked!") } else { log.Info("forge.FinalGoDepsCheck(check) failed. boo.") |
