Skip to content

Commit 8875fd1

Browse files
authored
Rollup merge of rust-lang#126175 - Kobzol:tidy-install-pip-quiet, r=tgross35
Use --quiet flag when installing pip dependencies Fixes: rust-lang#126164 This still prints an error if any occurs.
2 parents cfd44ec + 1ade7cb commit 8875fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/tidy/src/ext_tool_checks.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ fn install_requirements(
320320
}
321321

322322
let stat = Command::new(py_path)
323-
.args(["-m", "pip", "install", "--require-hashes", "-r"])
323+
.args(["-m", "pip", "install", "--quiet", "--require-hashes", "-r"])
324324
.arg(src_reqs_path)
325325
.status()?;
326326
if !stat.success() {

0 commit comments

Comments
 (0)