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 c5766ac commit 6d3719fCopy full SHA for 6d3719f
collector/src/execute.rs
@@ -576,7 +576,7 @@ impl<'a> MeasureProcessor<'a> {
576
let has_perf = Command::new("perf").output().is_ok();
577
assert!(has_perf);
578
} else {
579
- let has_xperf = Command::new(env::var("XPERF").unwrap_or("xpref.exe".to_string())).output().is_ok();
+ let has_xperf = Command::new(env::var("XPERF").unwrap_or("xperf.exe".to_string())).output().is_ok();
580
assert!(has_xperf);
581
582
let has_tracelog = Command::new(env::var("TRACELOG").unwrap_or("tracelog.exe".to_string())).output().is_ok();
0 commit comments