From cf7688e49a8daa9188f7fd2845bf7a954a5d256e Mon Sep 17 00:00:00 2001 From: binarycat Date: Wed, 31 Jul 2024 16:03:47 -0400 Subject: [PATCH] fmt --- src/bootstrap/src/core/download.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/bootstrap/src/core/download.rs b/src/bootstrap/src/core/download.rs index 8af6e88e2336d..d330d4769d7bb 100644 --- a/src/bootstrap/src/core/download.rs +++ b/src/bootstrap/src/core/download.rs @@ -225,10 +225,7 @@ impl Config { "3", "-SRf", ]); - wget.args([ - "-O", - tempfile.to_str().unwrap(), - ]); + wget.args(["-O", tempfile.to_str().unwrap()]); // Don't print progress in CI; the \r wrapping looks bad and downloads don't take long enough for progress to be useful. if CiEnv::is_ci() { curl.arg("-s");