cmd/vulncheck_compare: missing error branch

Execution continued when `err != nil` and `binResp == nil`.
This was causing flakes on the LUCI builders

Change-Id: Ib3f9086b8315fc36b72745900720a572f2fbecce
Reviewed-on: https://go-review.googlesource.com/c/pkgsite-metrics/+/612915
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Zvonimir Pavlinovic <zpavlinovic@google.com>
diff --git a/cmd/govulncheck_compare/govulncheck_compare.go b/cmd/govulncheck_compare/govulncheck_compare.go
index 72959c0..6a9b80a 100644
--- a/cmd/govulncheck_compare/govulncheck_compare.go
+++ b/cmd/govulncheck_compare/govulncheck_compare.go
@@ -75,6 +75,7 @@
 		binResp, err := govulncheck.RunGovulncheckCmd(govulncheckPath, govulncheck.FlagBinary, binary.BinaryPath, modulePath, vulndbPath)
 		if err != nil {
 			pair.Error = err.Error()
+			continue
 		}
 		pair.BinaryResults = *binResp
 		pair.BinaryResults.Stats.BuildTime = binary.BuildTime