mirror of
https://codeberg.org/h3xx/simplify_static_dir
synced 2024-08-14 23:57:24 +00:00
Use non-interpolating strings where possible
This commit is contained in:
parent
2987e063bd
commit
4e2e94881b
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ MAIN: {
|
||||||
my $report_every = 1; # seconds
|
my $report_every = 1; # seconds
|
||||||
my $processed_bytes = 0;
|
my $processed_bytes = 0;
|
||||||
my $last_report = time;
|
my $last_report = time;
|
||||||
my $total_size_hr = sprintf "%0.4G %s", Directory::Simplify::Utils::hr_size(sum(map { $_->{size} } @files) or 0);
|
my $total_size_hr = sprintf '%0.4G %s', Directory::Simplify::Utils::hr_size(sum(map { $_->{size} } @files) or 0);
|
||||||
my $cb;
|
my $cb;
|
||||||
if ($print_progress) {
|
if ($print_progress) {
|
||||||
printf STDERR "\e\x{37}";
|
printf STDERR "\e\x{37}";
|
||||||
|
|
Loading…
Reference in a new issue