@@ -679,12 +679,12 @@ fn print_results(cfg: &Config, client: &Client, bisection_result: &BisectionResu
679
679
}
680
680
681
681
let tc_found = format ! ( "Regression in {}" , toolchains[ * found] ) ;
682
- eprintln ! ( "" ) ;
683
- eprintln ! ( "" ) ;
682
+ eprintln ! ( ) ;
683
+ eprintln ! ( ) ;
684
684
eprintln ! ( "{}" , "*" . repeat( 80 ) . dimmed( ) . bold( ) ) ;
685
685
eprintln ! ( "{}" , tc_found. red( ) ) ;
686
686
eprintln ! ( "{}" , "*" . repeat( 80 ) . dimmed( ) . bold( ) ) ;
687
- eprintln ! ( "" ) ;
687
+ eprintln ! ( ) ;
688
688
}
689
689
690
690
fn print_final_report (
@@ -704,20 +704,16 @@ fn print_final_report(
704
704
..
705
705
} = ci_bisection_result;
706
706
707
- #[ rustfmt:: skip]
708
- eprintln ! ( "{}" , "==================================================================================" . dimmed( ) ) ;
709
- #[ rustfmt:: skip]
710
- eprintln ! ( "{}" , "= Please file this regression report on the rust-lang/rust GitHub repository =" . dimmed( ) ) ;
711
- #[ rustfmt:: skip]
712
- eprintln ! ( "{}" , "= New issue: https://github.com/rust-lang/rust/issues/new =" . dimmed( ) ) ;
713
- #[ rustfmt:: skip]
714
- eprintln ! ( "{}" , "= Known issues: https://github.com/rust-lang/rust/issues =" . dimmed( ) ) ;
715
- #[ rustfmt:: skip]
716
- eprintln ! ( "{}" , "= Copy and paste the text below into the issue report thread. Thanks! =" . dimmed( ) ) ;
717
- #[ rustfmt:: skip]
718
- eprintln ! ( "{}" , "==================================================================================" . dimmed( ) ) ;
719
-
720
- eprintln ! ( "" ) ;
707
+ #[ rustfmt:: skip] {
708
+ eprintln ! ( "==================================================================================" . dimmed( ) ) ;
709
+ eprintln ! ( "= Please file this regression report on the rust-lang/rust GitHub repository =" . dimmed( ) ) ;
710
+ eprintln ! ( "= New issue: https://github.com/rust-lang/rust/issues/new =" . dimmed( ) ) ;
711
+ eprintln ! ( "= Known issues: https://github.com/rust-lang/rust/issues =" . dimmed( ) ) ;
712
+ eprintln ! ( "= Copy and paste the text below into the issue report thread. Thanks! =" . dimmed( ) ) ;
713
+ eprintln ! ( "==================================================================================" . dimmed( ) ) ;
714
+ }
715
+
716
+ eprintln ! ( ) ;
721
717
722
718
let ( start, end) = searched_range ( cfg, nightly_toolchains) ;
723
719
@@ -736,15 +732,15 @@ fn print_final_report(
736
732
ci_toolchains[ * ci_found] ,
737
733
) ;
738
734
739
- eprintln ! ( "" ) ;
735
+ eprintln ! ( ) ;
740
736
eprintln ! ( "<details>" ) ;
741
737
eprintln ! (
742
738
"<summary>bisected with <a href='{}'>cargo-bisect-rustc</a> v{}</summary>" ,
743
739
env!( "CARGO_PKG_REPOSITORY" ) ,
744
740
env!( "CARGO_PKG_VERSION" ) ,
745
741
) ;
746
- eprintln ! ( "" ) ;
747
- eprintln ! ( "" ) ;
742
+ eprintln ! ( ) ;
743
+ eprintln ! ( ) ;
748
744
if let Some ( host) = option_env ! ( "HOST" ) {
749
745
eprintln ! ( "Host triple: {}" , host) ;
750
746
}
@@ -757,7 +753,7 @@ fn print_final_report(
757
753
eprint ! ( "{} " , arg. to_string_lossy( ) ) ;
758
754
}
759
755
}
760
- eprintln ! ( "" ) ;
756
+ eprintln ! ( ) ;
761
757
eprintln ! ( "```" ) ;
762
758
eprintln ! ( "</details>" ) ;
763
759
}
@@ -1159,7 +1155,7 @@ fn bisect_ci_in_commits(
1159
1155
}
1160
1156
1161
1157
eprintln ! ( "validated commits found, specifying toolchains" ) ;
1162
- eprintln ! ( "" ) ;
1158
+ eprintln ! ( ) ;
1163
1159
1164
1160
let toolchains = commits
1165
1161
. into_iter ( )
0 commit comments