From c8bd0acf4cd8a0a29932bfe0e2509ae412ca14a9 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sun, 12 Feb 2023 09:42:34 -0500 Subject: [PATCH] fix(fp): False Positives on GitPython (#5442) --- core/src/main/resources/data/dbEcosystemCacheUpdates.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/main/resources/data/dbEcosystemCacheUpdates.sql b/core/src/main/resources/data/dbEcosystemCacheUpdates.sql index a1f4450b421..5501368ef3d 100644 --- a/core/src/main/resources/data/dbEcosystemCacheUpdates.sql +++ b/core/src/main/resources/data/dbEcosystemCacheUpdates.sql @@ -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'; \ No newline at end of file