Chore cargo fmt

Signed-off-by: Till Wegmueller <toasterson@gmail.com>
This commit is contained in:
Till Wegmueller 2025-11-18 16:14:57 +01:00
parent 102f4a1c52
commit b53ccfb4e2
No known key found for this signature in database

View file

@ -696,7 +696,8 @@ async fn run_step(workdir: &str, step: &WorkflowStep, idx: usize, total: usize)
let mut child = cmd.spawn().into_diagnostic()?; let mut child = cmd.spawn().into_diagnostic()?;
// Stream output with step fields; use per-step category for both stdout and stderr // Stream output with step fields; use per-step category for both stdout and stderr
let extra = serde_json::json!({"step_name": step.name, "step_index": idx, "total_steps": total}); let extra =
serde_json::json!({"step_name": step.name, "step_index": idx, "total_steps": total});
let step_cat_clone_out = step_category.clone(); let step_cat_clone_out = step_category.clone();
if let Some(stdout) = child.stdout.take() { if let Some(stdout) = child.stdout.take() {
let mut reader = BufReader::new(stdout); let mut reader = BufReader::new(stdout);