remove dbg!()

This commit is contained in:
binarycat 2024-08-22 19:04:34 -04:00
parent b3ec296f3d
commit d1b41f3747

View file

@ -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);