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.
2 parents ad6810e + b3d2012 commit 66a8421Copy full SHA for 66a8421
crates/project-model/src/build_scripts.rs
@@ -147,8 +147,8 @@ impl WorkspaceBuildScripts {
147
let out_dir = message.out_dir.into_os_string();
148
if !out_dir.is_empty() {
149
let data = outputs[package].get_or_insert_with(Default::default);
150
- let out_dir = Some(AbsPathBuf::assert(PathBuf::from(out_dir)));
151
- (data.out_dir, data.cfgs) = (out_dir, cfgs);
+ data.out_dir = Some(AbsPathBuf::assert(PathBuf::from(out_dir)));
+ data.cfgs = cfgs;
152
}
153
if !message.env.is_empty() {
154
outputs[package].get_or_insert_with(Default::default).envs =
0 commit comments