diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-12-29 14:31:54 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-12-29 14:31:54 +0300 |
| commit | 5b80a99a9f72d0f95641b9ab9358fa3801d68be0 (patch) | |
| tree | 16e23ee0de83ecd8d6b7ea8b0d5f415c289304d9 /src/bootstrap | |
| parent | 774a4bd4f4f6c91dda7c46550769349a522856f7 (diff) | |
| download | rust-5b80a99a9f72d0f95641b9ab9358fa3801d68be0.tar.gz rust-5b80a99a9f72d0f95641b9ab9358fa3801d68be0.zip | |
tidy: Enforce formatting rather than just check it if `--bless` is specified
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index f2a7d1d00cf..b5c8de057d0 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -736,7 +736,7 @@ impl Step for Tidy { if builder.config.channel == "dev" || builder.config.channel == "nightly" { builder.info("fmt check"); - crate::format::format(&builder.build, true); + crate::format::format(&builder.build, !builder.config.cmd.bless()); } } |
