summaryrefslogtreecommitdiff
path: root/http.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-29 20:00:26 -0600
committerJeff Carr <[email protected]>2025-01-29 20:00:26 -0600
commit9ee828cc3b362cf490d3cd8dd4296ff56a3f85e2 (patch)
tree5dcceb8027c85cda530473103f2c55828aec11b7 /http.go
parent1d6c67b46cc4d3ee137e3f4ddc6145841732cd7c (diff)
hopefully this logic will finally fucking work
Diffstat (limited to 'http.go')
-rw-r--r--http.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.go b/http.go
index 609d36e..c5f4123 100644
--- a/http.go
+++ b/http.go
@@ -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.")