-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #13729 - epage:slash, r=Muscraft
fix(package): Normalize paths in `Cargo.toml` ### What does this PR try to resolve? On the surface, this resolves problems that aren't too big of a deal - Clean up redundant information in paths (e.g. `.////.//foo.rs` being `foo.rs`) which is just visual - Switch paths with `\` in them to `/` However, this is prep for #13713 where these will be a much bigger deal - If the user does `./foo.rs`, we might fail to compare that with the list of files included in the package - We'll generate paths with `\` and need to make sure the packages can still be used on Windows ### How should we test and review this PR? ### Additional information
- Loading branch information
Showing
2 changed files
with
218 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters