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:
commit
8875fd1ff4
1 changed files with 1 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue