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 4429eab commit eb40414Copy full SHA for eb40414
collector/src/bin/rustc-perf-collector/main.rs
@@ -458,7 +458,7 @@ fn main_result() -> Result<i32, Error> {
458
let exclude = matches.value_of("exclude");
459
let benchmarks = get_benchmarks(&benchmark_dir, filter, exclude)?;
460
let use_remote = matches.is_present("sync_git");
461
- let collect_self_profile = matches.is_present("skip_self_profile");
+ let collect_self_profile = !matches.is_present("skip_self_profile");
462
463
let get_out_dir = || {
464
let path = PathBuf::from(matches.value_of_os("output_repo").unwrap());
0 commit comments