Commit 69eff96
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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
629 | 629 | | |
630 | 630 | | |
631 | 631 | | |
| 632 | + | |
632 | 633 | | |
633 | 634 | | |
634 | 635 | | |
| |||
0 commit comments