Skip to content

Commit b0d0ec4

Browse files
authored
Rollup merge of #135612 - onur-ozkan:include-x-scripts-in-tarballs, r=clubby789
Include x scripts in tarballs Helps to provide 1:1 build experience between git-managed and tarball sources.
2 parents 508c72b + fdf4924 commit b0d0ec4

File tree

1 file changed

+11
-7
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+11
-7
lines changed

Diff for: src/bootstrap/src/core/build_steps/dist.rs

+11-7
Original file line numberDiff line numberDiff line change
@@ -994,20 +994,24 @@ 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",
1006+
"license-metadata.json",
9991007
"LICENSE-MIT",
1000-
"CONTRIBUTING.md",
10011008
"README.md",
10021009
"RELEASES.md",
10031010
"REUSE.toml",
1004-
"license-metadata.json",
1005-
"configure",
1011+
"x",
1012+
"x.ps1",
10061013
"x.py",
1007-
"config.example.toml",
1008-
"Cargo.toml",
1009-
"Cargo.lock",
1010-
".gitmodules",
1014+
// tidy-alphabetical-end
10111015
];
10121016
let src_dirs = ["src", "compiler", "library", "tests", "LICENSES"];
10131017

0 commit comments

Comments
 (0)