1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-21 09:49:36 +01:00
This commit is contained in:
Eelco Dolstra 2020-11-10 22:22:00 +01:00
parent 82bbb3a66e
commit e314119d14

View file

@ -552,10 +552,10 @@ public:
if (copyPath.done || copyPath.expected) {
state.statusLines.insert_or_assign(50,
fmt(ANSI_BOLD "" ANSI_NORMAL " %s " ANSI_BOLD "Fetched" ANSI_NORMAL " %d / %d paths, %.1f / %.1f MiB %d",
fmt(ANSI_BOLD "" ANSI_NORMAL " %s " ANSI_BOLD "Fetched" ANSI_NORMAL " %d / %d paths, %.1f / %.1f MiB",
renderBar(copyPath.done, copyPath.left, copyPath.expected),
copyPaths.done, copyPaths.expected,
copyPath.done / MiB, copyPath.expected / MiB, copyPath.left));
copyPath.done / MiB, copyPath.expected / MiB));
state.statusLines.insert_or_assign(51, "");
}