diff options
| author | Jeff Carr <[email protected]> | 2024-12-03 03:19:12 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-03 03:19:12 -0600 |
| commit | dfae92e3c35e445e5a8098c720cac9b8d3f969c8 (patch) | |
| tree | 27ac4898541703e7aab2613edcf35f3f6f21cbf7 /goDebCheck.go | |
| parent | 6342113c2ae81961c991a7b6c2a34352cae4d66f (diff) | |
oopsv0.0.18
Diffstat (limited to 'goDebCheck.go')
| -rw-r--r-- | goDebCheck.go | 5 |
1 files changed, 4 insertions, 1 deletions
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 |
