Fix bug sur génération .size
This commit is contained in:
parent
b18b3cf054
commit
0a3df0a3bd
@ -199,7 +199,7 @@ sub process {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# generate .size
|
# 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) {
|
if($dryrun) {
|
||||||
print "$command\n";
|
print "$command\n";
|
||||||
} else {
|
} else {
|
||||||
@ -302,7 +302,7 @@ sub process {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# size
|
# 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) {
|
if($dryrun) {
|
||||||
print "$command\n";
|
print "$command\n";
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user