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 d310576 commit 9c05e56Copy full SHA for 9c05e56
v11y/walker/src/lib.rs
@@ -107,8 +107,8 @@ impl Run {
107
if !name.starts_with("CVE-") {
108
continue;
109
}
110
-
111
- let mut name_matches_prefix = false;
+ //this is done to stop this section from ignoring files when there's no prefix
+ let mut name_matches_prefix = self.require_prefix.is_empty();
112
for prefix in &self.require_prefix {
113
if name.starts_with(prefix) {
114
name_matches_prefix = true;
0 commit comments