We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caacef2 commit 8686383Copy full SHA for 8686383
build_system/utils.rs
@@ -191,7 +191,7 @@ pub(crate) fn spawn_and_wait(mut cmd: Command) {
191
// Based on the retry function in rust's src/ci/shared.sh
192
#[track_caller]
193
pub(crate) fn retry_spawn_and_wait(tries: u64, mut cmd: Command) {
194
- for i in 1..tries+1 {
+ for i in 1..tries + 1 {
195
if i != 1 {
196
println!("Command failed. Attempt {i}/{tries}:");
197
}
0 commit comments