Skip to content

Commit

Permalink
remove dbg!()
Browse files Browse the repository at this point in the history
  • Loading branch information
lolbinarycat committed Aug 22, 2024
1 parent b3ec296 commit d1b41f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/src/core/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit d1b41f3

Please sign in to comment.