We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c3673 commit 17aab60Copy full SHA for 17aab60
src/bootstrap/mk/Makefile.in
@@ -95,7 +95,7 @@ install:
95
tidy:
96
$(Q)$(BOOTSTRAP) test --stage 2 src/tools/tidy $(BOOTSTRAP_ARGS)
97
prepare:
98
- $(Q)$(BOOTSTRAP) build --stage 2 nonexistent/path/to/trigger/cargo/metadata
+ $(Q)$(BOOTSTRAP) build --stage 2 --dry-run
99
100
## MSVC native builders
101
src/bootstrap/src/lib.rs
@@ -596,15 +596,6 @@ impl Build {
596
_ => (),
597
}
598
599
- {
600
- let builder = builder::Builder::new(self);
601
- if let Some(path) = builder.paths.first() {
602
- if path == Path::new("nonexistent/path/to/trigger/cargo/metadata") {
603
- return;
604
- }
605
606
607
-
608
if !self.config.dry_run() {
609
{
610
// We first do a dry-run. This is a sanity-check to ensure that
0 commit comments