Fix bug sur génération .size

This commit is contained in:
Frédéric Couchet 2021-10-05 10:27:25 +02:00 committed by Frédéric Couchet
parent b18b3cf054
commit 0a3df0a3bd
1 changed files with 2 additions and 2 deletions

View File

@ -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 {