We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4648904 commit 5e2969eCopy full SHA for 5e2969e
1 file changed
src/bootstrap/config.rs
@@ -1710,10 +1710,11 @@ impl Config {
1710
&& source_version.minor == rustc_version.minor + 1))
1711
{
1712
let prev_version = format!("{}.{}.x", source_version.major, source_version.minor - 1);
1713
- panic!(
+ eprintln!(
1714
"Unexpected rustc version: {}, we should use {}/{} to build source with {}",
1715
rustc_version, prev_version, source_version, source_version
1716
);
1717
+ crate::detail_exit(1);
1718
}
1719
1720
0 commit comments