You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(doctest): use platform-specific temp paths in command module examples
The doctest for the command module was using hardcoded /tmp path which doesn't
exist on Windows, causing the doctest to fail when running on Windows CI runners.
Fixed by using cfg!(windows) to select appropriate temp directory path on each platform.
Fixes Windows doctest failure: crates/mcp-core/src/command.rs - command (line 16)
All 352 tests passing.
0 commit comments