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.
build.rustflags
1 parent 7ba70c3 commit 79924b5Copy full SHA for 79924b5
src/cargo/ops/cargo_rustc/context.rs
@@ -866,6 +866,8 @@ fn env_args(config: &Config,
866
if let Some(args) = config.get_list(&key)? {
867
let args = args.val.into_iter().map(|a| a.0);
868
return Ok(args.collect());
869
+ } else if let Some(arg) = config.get_string(&key)? {
870
+ return Ok(arg.val.split(' ').map(str::to_string).collect());
871
}
872
873
Ok(Vec::new())
0 commit comments