Skip to content

Commit

Permalink
Fix assign bug to list jfrog#1035
Browse files Browse the repository at this point in the history
  • Loading branch information
guyshe-jfrog committed Dec 6, 2023
1 parent 5eeb0ad commit 5ab70d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xray/commands/scan/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ func cveListFromVulnerabilities(flatResults []services.ScanResponse) []string {
}
}
if !slices.Contains(technologiesList, vulnerability.Technology) && (vulnerability.Technology != "") {
cveList = append(technologiesList, vulnerability.Technology)
technologiesList = append(technologiesList, vulnerability.Technology)
}
}
}
Expand Down

0 comments on commit 5ab70d8

Please sign in to comment.