We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e1278 commit 7c43839Copy full SHA for 7c43839
1 file changed
rust/extractor/src/config.rs
@@ -68,7 +68,7 @@ impl Config {
68
let inputs_list = std::fs::read_to_string(inputs_file).context("reading file list")?;
69
cli_args
70
.inputs
71
- .extend(inputs_list.split("\n").map(PathBuf::from));
+ .extend(inputs_list.split_terminator("\n").map(PathBuf::from));
72
}
73
Figment::new()
74
.merge(Env::prefixed("CODEQL_EXTRACTOR_RUST_"))
0 commit comments