Skip to content

Commit e12d15d

Browse files
committed
Use -q to silence RA output
1 parent 07307f5 commit e12d15d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

xtask/src/dist.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,8 @@ fn gather_pgo_profile<'a>(
189189
eprintln!("Training RA on {label}...");
190190
cmd!(
191191
sh,
192-
"target/{target}/release/rust-analyzer analysis-stats --run-all-ide-things {train_path}"
192+
"target/{target}/release/rust-analyzer analysis-stats -q --run-all-ide-things {train_path}"
193193
)
194-
// analysis-stats produces an enormous amount of output on stdout
195-
.ignore_stdout()
196194
.run()
197195
.context("cannot generate PGO profiles")?;
198196

0 commit comments

Comments
 (0)