diff options
| author | jyn <github@jyn.dev> | 2023-06-04 22:11:05 -0500 |
|---|---|---|
| committer | jyn <github@jyn.dev> | 2023-06-04 22:12:29 -0500 |
| commit | af4e6c19377eca3f862bd2d7483c30831e998886 (patch) | |
| tree | 80d4d72e635e33eba848f339f559525f096e721a /src/bootstrap | |
| parent | dcf3571c513a29a60a5061ce84c3c618cf5e4cd5 (diff) | |
| download | rust-af4e6c19377eca3f862bd2d7483c30831e998886.tar.gz rust-af4e6c19377eca3f862bd2d7483c30831e998886.zip | |
Don't double-print status messages in GHA
Before: ``` Building stage0 tool jsondocck (x86_64-unknown-linux-gnu) Building stage0 tool jsondocck (x86_64-unknown-linux-gnu) Downloading crates ... ``` After: ``` Building stage0 tool jsondocck (x86_64-unknown-linux-gnu) Downloading crates ... ```
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index aa5d1bdd37f..7ed8d2bfa7f 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -1069,7 +1069,6 @@ impl Build { } fn group(&self, msg: &str) -> Option<gha::Group> { - self.info(&msg); match self.config.dry_run { DryRun::SelfCheck => None, DryRun::Disabled | DryRun::UserSelected => Some(gha::group(&msg)), |
