You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let mut has_include_dir = false; // TODO: This is a horrible hack, wait for the post-merge discussion in https://github.com/github/codeql/pull/7444 to be resolved
24
27
for line in env::var("LGTM_INDEX_FILTERS")
25
28
.unwrap_or_default()
26
29
.split('\n')
27
30
{
28
31
if let Some(stripped) = line.strip_prefix("include:") {
29
-
cmd.arg("--include").arg(stripped);
30
-
has_include_dir = true;
32
+
cmd.arg("--also-match=".to_owned() + stripped);
31
33
} else if let Some(stripped) = line.strip_prefix("exclude:") {
0 commit comments