summaryrefslogtreecommitdiff
path: root/humanShowRepo.go
diff options
context:
space:
mode:
Diffstat (limited to 'humanShowRepo.go')
-rw-r--r--humanShowRepo.go2
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.")