We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1c61e commit 15e707bCopy full SHA for 15e707b
src/toolchain/mod.rs
@@ -110,7 +110,10 @@ pub async fn download_file(
110
let chunk = chunk_result?;
111
size_downloaded += chunk.len();
112
if let Some(len) = len {
113
- print!("\rDownloading {file_name} {}/{} bytes", size_downloaded, len);
+ print!(
114
+ "\rDownloading {file_name} {}/{} bytes",
115
+ size_downloaded, len
116
+ );
117
} else {
118
print!("\rDownloaded {file_name} {} bytes", size_downloaded);
119
}
0 commit comments