about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-06-09 10:17:10 +0200
committerGitHub <noreply@github.com>2024-06-09 10:17:10 +0200
commit8875fd1ff4df162ef9f387f52edcae9e2a364da8 (patch)
treee02fe891774e3a74da24eb5f25da91c817ea013e
parentcfd44ec7e400f187258d75b6899ce58671d58ec0 (diff)
parent1ade7cbe4185bcd302b3774b00c0b4011f43d165 (diff)
downloadrust-8875fd1ff4df162ef9f387f52edcae9e2a364da8.tar.gz
rust-8875fd1ff4df162ef9f387f52edcae9e2a364da8.zip
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.
-rw-r--r--src/tools/tidy/src/ext_tool_checks.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/ext_tool_checks.rs b/src/tools/tidy/src/ext_tool_checks.rs
index 40e75d1d3fa..2c97a39f100 100644
--- a/src/tools/tidy/src/ext_tool_checks.rs
+++ b/src/tools/tidy/src/ext_tool_checks.rs
@@ -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() {