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 57ca4e7 commit f58273bCopy full SHA for f58273b
crates/tracel-xtask/src/utils/process.rs
@@ -145,15 +145,14 @@ pub fn run_process_for_workspace<'a>(
145
}
146
147
148
- if close_group {
149
- endgroup!();
150
- }
151
-
152
let status = child
153
.wait()
154
.expect("Should be able to wait for the process to finish.");
155
156
if status.success() || ignore_error {
+ if close_group {
+ endgroup!();
+ }
157
anyhow::Ok(())
158
} else {
159
Err(anyhow::anyhow!("{}", error_msg))
0 commit comments