Skip to content
Snippets Groups Projects
Commit b8f24f25 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

Fix closure size display

parent e196eecb
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ sub copyTo {
$missingSize += (queryPathInfo($_, 1))[3] foreach @missing;
printf STDERR "copying %d missing paths (%.2f MiB) to ‘$sshHost’...\n",
scalar(@missing), $missingSize / (1024.0^2);
scalar(@missing), $missingSize / (1024**2);
return if $dryRun;
# Send the "import paths" command.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment