mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
fix(cli/upgrade): modify download size paddings (#10639)
This commit is contained in:
parent
f3d5e74d2d
commit
43417b4660
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ async fn download_package(
|
|||
print!("\u{001b}[1G\u{001b}[2K");
|
||||
}
|
||||
print!(
|
||||
"{:0>4.1} MiB / {:.1} MiB ({:0>5.1}%)",
|
||||
"{:>4.1} MiB / {:.1} MiB ({:^5.1}%)",
|
||||
current_size / MEBIBYTE,
|
||||
total_size / MEBIBYTE,
|
||||
(current_size / total_size) * 100.0,
|
||||
|
|
Loading…
Reference in a new issue