We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4677f70 commit 3388f88Copy full SHA for 3388f88
vulnerabilities/importers/istio.py
@@ -58,6 +58,11 @@ def updated_advisories(self) -> Set[Advisory]:
58
files = self._added_files.union(self._updated_files)
59
advisories = []
60
for f in files:
61
+ # Istio website has files with name starting with underscore, these contain metadata
62
+ # required for rendering the website. We're not interested in these.
63
+ # See also https://github.com/nexB/vulnerablecode/issues/563
64
+ if f.endswith("_index.md"):
65
+ continue
66
processed_data = self.process_file(f)
67
if processed_data:
68
advisories.extend(processed_data)
0 commit comments