Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions src/bootstrap/src/core/build_steps/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"];

Expand Down
Loading