diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-04-15 12:46:56 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-04-15 12:46:56 +0200 |
| commit | 2110265577afc18e1816e91e363095fb106d68de (patch) | |
| tree | 3a743d6f7d9c3bc3a082bc8115b790222e6829ed | |
| parent | ad7a8a43c5f21576283e4794711c0edfe9de5a4a (diff) | |
| download | rust-2110265577afc18e1816e91e363095fb106d68de.tar.gz rust-2110265577afc18e1816e91e363095fb106d68de.zip | |
Use `-q` to silence RA output
| -rw-r--r-- | src/tools/rust-analyzer/xtask/src/dist.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/rust-analyzer/xtask/src/dist.rs b/src/tools/rust-analyzer/xtask/src/dist.rs index cb15c3a1441..7e26167725f 100644 --- a/src/tools/rust-analyzer/xtask/src/dist.rs +++ b/src/tools/rust-analyzer/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")?; |
