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
refactor(command): drop case-insensitive PATH lookup in resolve_program
Per PR review on #1498: every Rust call site of `run_command` /
`run_command_with_fspy` already builds envs with uppercase `"PATH"`
(via `HashMap::from([("PATH".to_string(), format_path_env(...))])`
in vite_install command handlers and vite_pm_cli). The `Path`-keyed
scenario the case-insensitive lookup defended against doesn't reach
this code path, so the lookup and its Windows-only regression test
are dead weight. Use `envs.get("PATH")` directly.
0 commit comments