Skip to content

Commit 9133a8e

Browse files
committed
format
1 parent 45f573a commit 9133a8e

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

src/bootstrap/src/core/config/config.rs

+4-8
Original file line numberDiff line numberDiff line change
@@ -2754,17 +2754,13 @@ impl Config {
27542754
}
27552755
};
27562756

2757-
let files_to_track = &[
2758-
"compiler",
2759-
"library",
2760-
"src/version",
2761-
"src/stage0",
2762-
"src/ci/channel",
2763-
];
2757+
let files_to_track =
2758+
&["compiler", "library", "src/version", "src/stage0", "src/ci/channel"];
27642759

27652760
// Look for a version to compare to based on the current commit.
27662761
// Only commits merged by bors will have CI artifacts.
2767-
let commit = self.last_modified_commit(files_to_track, "download-rustc", if_unchanged).unwrap();
2762+
let commit =
2763+
self.last_modified_commit(files_to_track, "download-rustc", if_unchanged).unwrap();
27682764

27692765
if CiEnv::is_ci() && {
27702766
let head_sha =

0 commit comments

Comments
 (0)