Skip to content

Commit

Permalink
Miri is not required on beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Simulacrum committed Nov 15, 2020
1 parent d9beaaf commit 0b6785f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1575,13 +1575,13 @@ impl Step for Miri {
let miri = builder
.ensure(tool::Miri { compiler, target, extra_features: Vec::new() })
.or_else(|| {
missing_tool("miri", builder.build.config.missing_tools);
missing_tool("miri", true);
None
})?;
let cargomiri = builder
.ensure(tool::CargoMiri { compiler, target, extra_features: Vec::new() })
.or_else(|| {
missing_tool("cargo miri", builder.build.config.missing_tools);
missing_tool("cargo miri", true);
None
})?;

Expand Down

0 comments on commit 0b6785f

Please sign in to comment.