Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
northdpole committed Apr 9, 2024
1 parent 4f60713 commit 91fd6a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions components/enrichers/multitool-deduplication/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@ func enrichIssue(issue *v1.Issue, foundTool string) v1.EnrichedIssue {
RawIssue: issue,
}
}
} else {
fmt.Println("registered new purl", issue.Target)
return v1.EnrichedIssue{
RawIssue: issue,
}
}
} else if matchFilesystem.Match([]byte(issue.Target)) {
return v1.EnrichedIssue{
Expand Down
2 changes: 1 addition & 1 deletion components/producers/blackduck/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
log.Fatal(err)
}
if err := producers.WriteDraconOut(
"gosec",
"blackduck",
issues,
); err != nil {
log.Fatal(err)
Expand Down

0 comments on commit 91fd6a5

Please sign in to comment.