Skip to content

Commit 69eff96

Browse files
committed
fix(tools): add error_kind to windows-gated bash ToolOutput literal
Phase 8 added `error_kind: Option<ToolErrorKind>` to ToolOutput, and Phase 9 verified clippy clean on Linux. The Windows-only `maybe_execute_simple_windows_http_command` in bash.rs — gated by `#[cfg(windows)]` — was not visible to Linux clippy and its `Some(ToolOutput { ... })` literal still missed the new field, so the release.yml `CI Checks (Windows)` job failed cross-compile. Trivial fix: add `error_kind: None` to that single literal. No behaviour change — the Windows HTTP compat path never had a typed error kind to surface in the first place. This unblocks the v3.0.0 release pipeline.
1 parent 817f505 commit 69eff96

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

core/src/tools/builtin/bash.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -629,6 +629,7 @@ pub(crate) async fn maybe_execute_simple_windows_http_command(command: &str) ->
629629
"json_body": parsed.json_body,
630630
})),
631631
images: vec![],
632+
error_kind: None,
632633
})
633634
}
634635

0 commit comments

Comments
 (0)