diff options
| author | Jeff Carr <[email protected]> | 2025-01-29 20:00:26 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-29 20:00:26 -0600 |
| commit | 9ee828cc3b362cf490d3cd8dd4296ff56a3f85e2 (patch) | |
| tree | 5dcceb8027c85cda530473103f2c55828aec11b7 /http.go | |
| parent | 1d6c67b46cc4d3ee137e3f4ddc6145841732cd7c (diff) | |
hopefully this logic will finally fucking work
Diffstat (limited to 'http.go')
| -rw-r--r-- | http.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -121,7 +121,7 @@ func testGoRepo(check *gitpb.Repo) { data, _ := os.ReadFile(filepath.Join(check.FullPath, "go.mod")) log.Info(string(data)) - if me.forge.FinalGoDepsCheckOk(check, true) { + if err := me.forge.FinalGoDepsCheckOk(check, true); err == nil { log.Info("forge.FinalGoDepsCheck(check) worked!") } else { log.Info("forge.FinalGoDepsCheck(check) failed. boo.") |
