Skip to content

Commit 207b79d

Browse files
committed
Print the start range before the end range
1 parent d1d40a6 commit 207b79d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,12 +575,12 @@ fn bisect(cfg: &Config, client: &Client) -> Result<(), Error> {
575575
if let ToolchainSpec::Nightly { date } = nightly_regression.spec {
576576
let previous_date = date - chrono::Duration::days(1);
577577

578-
let bad_commit = Bound::Date(date).sha()?;
579578
let working_commit = Bound::Date(previous_date).sha()?;
579+
let bad_commit = Bound::Date(date).sha()?;
580580
eprintln!(
581581
"looking for regression commit between {} and {}",
582-
date.format(YYYY_MM_DD),
583582
previous_date.format(YYYY_MM_DD),
583+
date.format(YYYY_MM_DD),
584584
);
585585

586586
let ci_bisection_result =

0 commit comments

Comments
 (0)