Unnamed repository; edit this file 'description' to name the repository.
Use `-q` to silence RA output
Jakub Beránek 2025-04-15
parent 07307f5 · commit e12d15d
-rw-r--r--xtask/src/dist.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs
index cb15c3a144..7e26167725 100644
--- a/xtask/src/dist.rs
+++ b/xtask/src/dist.rs
@@ -189,10 +189,8 @@ fn gather_pgo_profile<'a>(
eprintln!("Training RA on {label}...");
cmd!(
sh,
- "target/{target}/release/rust-analyzer analysis-stats --run-all-ide-things {train_path}"
+ "target/{target}/release/rust-analyzer analysis-stats -q --run-all-ide-things {train_path}"
)
- // analysis-stats produces an enormous amount of output on stdout
- .ignore_stdout()
.run()
.context("cannot generate PGO profiles")?;