Skip to content

Commit 72ec547

Browse files
committed
add tidy check on dist src files order
Signed-off-by: onur-ozkan <[email protected]>
1 parent 8a6878a commit 72ec547

File tree

1 file changed

+8
-6
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+8
-6
lines changed

src/bootstrap/src/core/build_steps/dist.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -994,19 +994,21 @@ impl Step for PlainSourceTarball {
994994

995995
// This is the set of root paths which will become part of the source package
996996
let src_files = [
997+
// tidy-alphabetical-start
998+
".gitmodules",
999+
"Cargo.lock",
1000+
"Cargo.toml",
1001+
"config.example.toml",
1002+
"configure",
1003+
"CONTRIBUTING.md",
9971004
"COPYRIGHT",
9981005
"LICENSE-APACHE",
9991006
"LICENSE-MIT",
1000-
"CONTRIBUTING.md",
10011007
"README.md",
10021008
"RELEASES.md",
10031009
"REUSE.toml",
1004-
"configure",
10051010
"x.py",
1006-
"config.example.toml",
1007-
"Cargo.toml",
1008-
"Cargo.lock",
1009-
".gitmodules",
1011+
// tidy-alphabetical-end
10101012
];
10111013
let src_dirs = ["src", "compiler", "library", "tests", "LICENSES"];
10121014

0 commit comments

Comments
 (0)