diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-04-25 01:36:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-25 01:36:01 +0200 |
| commit | f136ba64cda60311c87905a3ca0751823100c1bf (patch) | |
| tree | 47cc2fe444a3255e132dcbfd92aee96c396550b9 | |
| parent | e20ca112cc821136f2bf314c6b61fdb73a2e8d8d (diff) | |
| parent | a62a8b00e9e071ea2739141ad5b3eaf479d97873 (diff) | |
| download | rust-f136ba64cda60311c87905a3ca0751823100c1bf.tar.gz rust-f136ba64cda60311c87905a3ca0751823100c1bf.zip | |
Rollup merge of #71512 - Rustin-Liu:rustin-patch-bootstrap, r=Mark-Simulacrum
Remove useless "" args Signed-off-by: Rustin-Liu <rustin.liu@gmail.com>
| -rw-r--r-- | src/bootstrap/toolstate.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/toolstate.rs b/src/bootstrap/toolstate.rs index 095c3c03c30..e6560771c0e 100644 --- a/src/bootstrap/toolstate.rs +++ b/src/bootstrap/toolstate.rs @@ -93,12 +93,12 @@ static NIGHTLY_TOOLS: &[(&str, &str)] = &[ ]; fn print_error(tool: &str, submodule: &str) { - eprintln!(""); + eprintln!(); eprintln!("We detected that this PR updated '{}', but its tests failed.", tool); - eprintln!(""); + eprintln!(); eprintln!("If you do intend to update '{}', please check the error messages above and", tool); eprintln!("commit another update."); - eprintln!(""); + eprintln!(); eprintln!("If you do NOT intend to update '{}', please ensure you did not accidentally", tool); eprintln!("change the submodule at '{}'. You may ask your reviewer for the", submodule); eprintln!("proper steps."); |
