From 0a3df0a3bdb00b7a78f10cdc132b2f9ac362a3f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Couchet?= Date: Tue, 5 Oct 2021 10:27:25 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20bug=20sur=20g=C3=A9n=C3=A9ration=20.size?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- podcasts/scripts/make-all-podcasts.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/podcasts/scripts/make-all-podcasts.pl b/podcasts/scripts/make-all-podcasts.pl index 8b2f99b..9886cec 100755 --- a/podcasts/scripts/make-all-podcasts.pl +++ b/podcasts/scripts/make-all-podcasts.pl @@ -199,7 +199,7 @@ sub process { } # generate .size - my $command = "du -b $target_name |awk '{print $1}' > $target_name.size"; + my $command = "du -b $target_name |awk '{print \$1}' > $target_name.size"; if($dryrun) { print "$command\n"; } else { @@ -302,7 +302,7 @@ sub process { } # size - my $command = "du -b $source_name.$format |awk '{print $1}' > $source_name.$format.size"; + my $command = "du -b $source_name.$format |awk '{print \$1}' > $source_name.$format.size"; if($dryrun) { print "$command\n"; } else {