Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 5b1cd82

Browse files
committed
fixup
1 parent ac3844a commit 5b1cd82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/project-model/src/workspace.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,11 +366,11 @@ impl ProjectWorkspace {
366366
_ => None,
367367
})
368368
.collect();
369-
let outputs = &mut (match WorkspaceBuildScripts::run_once(config, &cargo_ws, progress) {
369+
let outputs = &mut match WorkspaceBuildScripts::run_once(config, &cargo_ws, progress) {
370370
Ok(it) => Ok(it.into_iter()),
371371
// io::Error is not Clone?
372372
Err(e) => Err(Arc::new(e)),
373-
});
373+
};
374374

375375
workspaces
376376
.iter()

0 commit comments

Comments
 (0)