Skip to content

Commit 84483f6

Browse files
committed
Fix xflags fallout
#7847 (comment)
1 parent 8eee914 commit 84483f6

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)