diff options
| author | binarycat <binarycat@envs.net> | 2024-08-22 19:04:34 -0400 |
|---|---|---|
| committer | binarycat <binarycat@envs.net> | 2024-08-22 19:04:34 -0400 |
| commit | d1b41f3747ecb01b717bd50918513227de36f3cb (patch) | |
| tree | a0a535d861963ad4f85ec29c516e39139a3ace7c | |
| parent | b3ec296f3d918efdbe4db02dbd7fbc7fea1641a1 (diff) | |
| download | rust-d1b41f3747ecb01b717bd50918513227de36f3cb.tar.gz rust-d1b41f3747ecb01b717bd50918513227de36f3cb.zip | |
remove dbg!()
| -rw-r--r-- | src/bootstrap/src/core/download.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/download.rs b/src/bootstrap/src/core/download.rs index 2bde05501fc..201addaec2f 100644 --- a/src/bootstrap/src/core/download.rs +++ b/src/bootstrap/src/core/download.rs @@ -249,7 +249,7 @@ impl Config { curl.arg("--progress-bar"); } // --retry-all-errors was added in 7.71.0, don't use it if curl is old. - if dbg!(curl_version()) > 7.70 { + if curl_version() > 7.70 { curl.arg("--retry-all-errors"); } curl.arg(url); |
