Skip to content

Commit d1b41f3

Browse files
committed
remove dbg!()
1 parent b3ec296 commit d1b41f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/download.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ impl Config {
249249
curl.arg("--progress-bar");
250250
}
251251
// --retry-all-errors was added in 7.71.0, don't use it if curl is old.
252-
if dbg!(curl_version()) > 7.70 {
252+
if curl_version() > 7.70 {
253253
curl.arg("--retry-all-errors");
254254
}
255255
curl.arg(url);

0 commit comments

Comments
 (0)