mirror of
https://github.com/rust-lang/rust.git
synced 2026-03-19 11:49:59 +00:00
When using `process::Command` on Windows, environment variable names must be case-preserving but case-insensitive When using `Command` to set the environment variables, the key should be compared as uppercase Unicode but when set it should preserve the original case. Fixes #85242