-
Couldn't load subscription status.
- Fork 13.9k
rustc: Spawn cmd /c for .bat scripts
#47505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This fixes an accidental regression rust-lang#46335 where the behavior of `Path::ends_with` is different from `str::ends_with` (paths operate over components, strs operate over chars).
|
r? @estebank (rust_highfive has picked a reviewer for you, use r? to override) |
|
cc @oli-obk (just a heads up) |
|
@bors r+ rollup |
|
📌 Commit 6defae3 has been approved by |
|
@alexcrichton do I need to create the PR against beta? I haven't done a backport before. |
|
@estebank nah no worries! As a reviewer you're not on the hook for the backport. I'll take care of this once it merges |
…on, r=estebank rustc: Spawn `cmd /c` for `.bat` scripts This fixes an accidental regression rust-lang#46335 where the behavior of `Path::ends_with` is different from `str::ends_with` (paths operate over components, strs operate over chars).
…on, r=estebank rustc: Spawn `cmd /c` for `.bat` scripts This fixes an accidental regression rust-lang#46335 where the behavior of `Path::ends_with` is different from `str::ends_with` (paths operate over components, strs operate over chars).
This fixes an accidental regression #46335 where the behavior of
Path::ends_withis different fromstr::ends_with(paths operate overcomponents, strs operate over chars).