Skip to content

Commit 2a74e58

Browse files
authored
Rollup merge of rust-lang#106310 - compiler-errors:old-git, r=jyn514
Dont use `--merge-base` during bootstrap formatting subcommand I use a development image with Ubuntu 20.04 LTS, which has git 2.25. Recently, `./x.py test tidy --bless` regressed in rust-lang#105702 because it uses the `--merge-base` option on `diff-index`, which was only introduced in git 2.30 (git/git@0f5a1d4). Luckily, it can be replicated via two calls to `git merge-base` + `git diff-index`, so let's just use that.
2 parents f34c6e3 + e2c5999 commit 2a74e58

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

src/bootstrap/format.rs

+9-14
Original file line numberDiff line numberDiff line change
@@ -80,24 +80,19 @@ fn update_rustfmt_version(build: &Builder<'_>) {
8080
///
8181
/// Returns `None` if all files should be formatted.
8282
fn get_modified_rs_files(build: &Builder<'_>) -> Option<Vec<String>> {
83-
let Ok(remote) = get_rust_lang_rust_remote() else {return None;};
83+
let Ok(remote) = get_rust_lang_rust_remote() else { return None; };
8484
if !verify_rustfmt_version(build) {
8585
return None;
8686
}
87+
88+
let merge_base =
89+
output(build.config.git().arg("merge-base").arg(&format!("{remote}/master")).arg("HEAD"));
8790
Some(
88-
output(
89-
build
90-
.config
91-
.git()
92-
.arg("diff-index")
93-
.arg("--name-only")
94-
.arg("--merge-base")
95-
.arg(&format!("{remote}/master")),
96-
)
97-
.lines()
98-
.map(|s| s.trim().to_owned())
99-
.filter(|f| Path::new(f).extension().map_or(false, |ext| ext == "rs"))
100-
.collect(),
91+
output(build.config.git().arg("diff-index").arg("--name-only").arg(merge_base.trim()))
92+
.lines()
93+
.map(|s| s.trim().to_owned())
94+
.filter(|f| Path::new(f).extension().map_or(false, |ext| ext == "rs"))
95+
.collect(),
10196
)
10297
}
10398

0 commit comments

Comments
 (0)