never print the warning on CI
This commit is contained in:
parent
e1772e7238
commit
60cbd749f3
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue