diff --git a/src/config.rs b/src/config.rs index 1abe469c..d5f588e4 100644 --- a/src/config.rs +++ b/src/config.rs @@ -549,7 +549,7 @@ impl Config { config.native = matches.occurrences_of("native") > 0; } - config.capture_output = config.command != "record" || matches.occurrences_of("capture") > 0; + config.capture_output = (config.command != "record" && config.command != "pyroscope" ) || matches.occurrences_of("capture") > 0; if !config.capture_output { config.hide_progress = true; }