From dfae92e3c35e445e5a8098c720cac9b8d3f969c8 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 3 Dec 2024 03:19:12 -0600 Subject: [PATCH] oops --- goDebCheck.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/goDebCheck.go b/goDebCheck.go index ce0f566..793397f 100644 --- a/goDebCheck.go +++ b/goDebCheck.go @@ -20,7 +20,10 @@ func (f *Forge) FinalGoDepsCheckOk(check *gitpb.Repo) bool { } // clear out the protobuf and rescan from the file check.GoDeps = nil - check.ParseGoSum() + if ok, err := check.ParseGoSum(); ! ok { + log.Info("FinalGoDepsCheckOk() error", err) + return false + } if check.GoDepsLen() == 0 { // this is a primitive