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 69c7d82 commit 3c1c2c0Copy full SHA for 3c1c2c0
src/bootstrap/config.rs
@@ -1684,6 +1684,10 @@ impl Config {
1684
}
1685
1686
fn check_build_rustc_version(&self) {
1687
+ if self.dry_run() {
1688
+ return;
1689
+ }
1690
+
1691
// check rustc version is same or lower with 1 apart from the building one
1692
let mut cmd = Command::new(&self.initial_rustc);
1693
cmd.arg("--version");
0 commit comments