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 096670c commit 834bbabCopy full SHA for 834bbab
src/bootstrap/step.rs
@@ -418,7 +418,6 @@ impl<'a> Step<'a> {
418
self.check_crate_std(compiler),
419
self.check_crate_test(compiler),
420
self.check_debuginfo(compiler),
421
- self.dist(stage),
422
];
423
424
// If we're testing the build triple, then we know we can
@@ -463,6 +462,9 @@ impl<'a> Step<'a> {
463
462
// misc
464
self.check_linkcheck(stage),
465
self.check_tidy(stage),
+
466
+ // can we make the distributables?
467
+ self.dist(stage),
468
]);
469
}
470
return base
0 commit comments