Fix bug sur génération .size
This commit is contained in:
parent
b18b3cf054
commit
0a3df0a3bd
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user