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 6adf885 commit 5ae8824Copy full SHA for 5ae8824
rust/extractor/src/config.rs
@@ -40,7 +40,8 @@ pub struct Config {
40
41
impl Config {
42
pub fn extract() -> anyhow::Result<Config> {
43
- let args = argfile::expand_args(argfile::parse_fromfile, argfile::PREFIX)?;
+ let args = argfile::expand_args(argfile::parse_fromfile, argfile::PREFIX)
44
+ .context("expanding parameter files")?;
45
let cli_args = CliConfig::parse_from(args);
46
Figment::new()
47
.merge(Env::prefixed("CODEQL_EXTRACTOR_RUST_"))
0 commit comments