Rollup merge of #126175 - Kobzol:tidy-install-pip-quiet, r=tgross35

Use --quiet flag when installing pip dependencies

Fixes: https://github.com/rust-lang/rust/issues/126164

This still prints an error if any occurs.
This commit is contained in:
Matthias Krüger 2024-06-09 10:17:10 +02:00 committed by GitHub
commit 8875fd1ff4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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() {