diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-01-18 13:58:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-18 13:58:04 +0100 |
| commit | b0d0ec4ca612d4b5c850312312598ffe619eed26 (patch) | |
| tree | 6ebb450a5f60f5d094c3eb058de2125ab73d9405 | |
| parent | 508c72b81e7327493077997fcbb8a17288262d96 (diff) | |
| parent | fdf4924a263a85165f3df8531da15e22e3fee823 (diff) | |
| download | rust-b0d0ec4ca612d4b5c850312312598ffe619eed26.tar.gz rust-b0d0ec4ca612d4b5c850312312598ffe619eed26.zip | |
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.
| -rw-r--r-- | src/bootstrap/src/core/build_steps/dist.rs | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/bootstrap/src/core/build_steps/dist.rs b/src/bootstrap/src/core/build_steps/dist.rs index afa409aa835..470e400243f 100644 --- a/src/bootstrap/src/core/build_steps/dist.rs +++ b/src/bootstrap/src/core/build_steps/dist.rs @@ -994,20 +994,24 @@ impl Step for PlainSourceTarball { // This is the set of root paths which will become part of the source package let src_files = [ + // tidy-alphabetical-start + ".gitmodules", + "Cargo.lock", + "Cargo.toml", + "config.example.toml", + "configure", + "CONTRIBUTING.md", "COPYRIGHT", "LICENSE-APACHE", + "license-metadata.json", "LICENSE-MIT", - "CONTRIBUTING.md", "README.md", "RELEASES.md", "REUSE.toml", - "license-metadata.json", - "configure", + "x", + "x.ps1", "x.py", - "config.example.toml", - "Cargo.toml", - "Cargo.lock", - ".gitmodules", + // tidy-alphabetical-end ]; let src_dirs = ["src", "compiler", "library", "tests", "LICENSES"]; |
