diff options
| -rw-r--r-- | src/bootstrap/src/core/build_steps/format.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/format.rs b/src/bootstrap/src/core/build_steps/format.rs index 95cf55d2fcd..590da1fb514 100644 --- a/src/bootstrap/src/core/build_steps/format.rs +++ b/src/bootstrap/src/core/build_steps/format.rs @@ -114,7 +114,7 @@ fn print_paths(verb: &str, adjective: Option<&str>, paths: &[String]) { } else { println!("fmt: {verb} {len} {adjective}files"); } - if len > 1000 { + if len > 1000 && !CiEnv::is_ci() { println!("hint: if this number seems too high, try running `git fetch origin master"); } } |
