diff options
author | Jonas Schievink <[email protected]> | 2020-12-11 16:55:52 +0000 |
---|---|---|
committer | Jonas Schievink <[email protected]> | 2020-12-11 16:55:52 +0000 |
commit | 64752ef5e9ccfdb0b9321fe23812b9b112d8b306 (patch) | |
tree | 8d578ba430ba0e6db75ca0256dc5ac77b9636e01 | |
parent | 7fc4ba000e18c96c2c32593909114fe90e163d85 (diff) |
Fix typo leading to metrics loss
-rw-r--r-- | xtask/src/metrics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/metrics.rs b/xtask/src/metrics.rs index 42ab09eeb..40fc6e622 100644 --- a/xtask/src/metrics.rs +++ b/xtask/src/metrics.rs | |||
@@ -84,7 +84,7 @@ impl Metrics { | |||
84 | eprintln!("\nMeasuring analysis-stats/{}", name); | 84 | eprintln!("\nMeasuring analysis-stats/{}", name); |
85 | let output = Command::new("./target/release/rust-analyzer") | 85 | let output = Command::new("./target/release/rust-analyzer") |
86 | .args(&["analysis-stats", "--quiet", "--memory-usage", path]) | 86 | .args(&["analysis-stats", "--quiet", "--memory-usage", path]) |
87 | .stdout(Stdio::inherit()) | 87 | .stderr(Stdio::inherit()) |
88 | .output()?; | 88 | .output()?; |
89 | let output = String::from_utf8(output.stdout)?; | 89 | let output = String::from_utf8(output.stdout)?; |
90 | for (metric, value, unit) in parse_metrics(&output) { | 90 | for (metric, value, unit) in parse_metrics(&output) { |