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 da15ab2 commit e3d2317Copy full SHA for e3d2317
dev-tools/reconfigurator-cli/src/lib.rs
@@ -2134,8 +2134,12 @@ fn cmd_blueprint_blippy(
2134
let resolved_id =
2135
state.system().resolve_blueprint_id(args.blueprint_id.into())?;
2136
let blueprint = state.system().get_blueprint(&resolved_id)?;
2137
- let report =
2138
- Blippy::new(&blueprint).into_report(BlippyReportSortKey::Severity);
+ let planning_input = sim
+ .planning_input(blueprint)
2139
+ .context("failed to construct planning input")?;
2140
+ let report = Blippy::new(&blueprint)
2141
+ .check_against_planning_input(&planning_input)
2142
+ .into_report(BlippyReportSortKey::Severity);
2143
Ok(Some(format!("{}", report.display())))
2144
}
2145
0 commit comments