Skip to content

Commit

Permalink
fix(fp): False Positives on GitPython (#5442)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Feb 12, 2023
1 parent 6cb9f33 commit c8bd0ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/resources/data/dbEcosystemCacheUpdates.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
UPDATE cpeEcosystemCache set ecosystem='MULTIPLE' where vendor = 'apache' and product = 'hadoop' and ecosystem != 'MULTIPLE';
UPDATE cpeEcosystemCache set ecosystem='MULTIPLE' where vendor = 'apache' and product = 'ranger' and ecosystem != 'MULTIPLE';
UPDATE cpeEcosystemCache set ecosystem='NATIVE' where vendor = 'git' and product = 'git' and ecosystem != 'NATIVE';
UPDATE cpeEcosystemCache set ecosystem='NATIVE' where vendor = 'python' and product = 'python' and ecosystem != 'NATIVE';
UPDATE cpeEcosystemCache set ecosystem='NATIVE' where vendor = 'python_software_foundation' and product = 'python' and ecosystem != 'NATIVE';
UPDATE cpeEcosystemCache set ecosystem='NATIVE' where vendor = 'python' and product = 'python' and ecosystem != 'NATIVE';

0 comments on commit c8bd0ac

Please sign in to comment.