diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-01-11 15:23:15 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-01-11 15:23:15 +0000 |
| commit | 868638393eb79bf53ba00be6000930f9ecf8751e (patch) | |
| tree | 37cc2aa48abd05e629e4ef63152d9ba4151fa340 | |
| parent | caacef29e6ad63d6b588715e809e78286d29db3f (diff) | |
| download | rust-868638393eb79bf53ba00be6000930f9ecf8751e.tar.gz rust-868638393eb79bf53ba00be6000930f9ecf8751e.zip | |
Rustfmt
| -rw-r--r-- | build_system/utils.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_system/utils.rs b/build_system/utils.rs index 3c27af0196e..3d6617d4458 100644 --- a/build_system/utils.rs +++ b/build_system/utils.rs @@ -191,7 +191,7 @@ pub(crate) fn spawn_and_wait(mut cmd: Command) { // Based on the retry function in rust's src/ci/shared.sh #[track_caller] pub(crate) fn retry_spawn_and_wait(tries: u64, mut cmd: Command) { - for i in 1..tries+1 { + for i in 1..tries + 1 { if i != 1 { println!("Command failed. Attempt {i}/{tries}:"); } |
