Skip to content

Commit

Permalink
Unrolled build for rust-lang#126175
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rust-timer committed Jun 9, 2024
2 parents b3ca6ee + 1ade7cb commit 7057772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/tidy/src/ext_tool_checks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ fn install_requirements(
}

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

0 comments on commit 7057772

Please sign in to comment.