Skip to content

Commit 8e7c42d

Browse files
bors[bot]matklad
andauthored
Merge #7849
7849: Fix xflags fallout r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 parents 6a585c6 + 84483f6 commit 8e7c42d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xtask/src/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ impl Metrics {
8080
fn measure_analysis_stats_path(&mut self, name: &str, path: &str) -> Result<()> {
8181
eprintln!("\nMeasuring analysis-stats/{}", name);
8282
let output =
83-
cmd!("./target/release/rust-analyzer analysis-stats --quiet --memory-usage {path}")
83+
cmd!("./target/release/rust-analyzer --quiet analysis-stats --memory-usage {path}")
8484
.read()?;
8585
for (metric, value, unit) in parse_metrics(&output) {
8686
self.report(&format!("analysis-stats/{}/{}", name, metric), value, unit.into());

0 commit comments

Comments
 (0)