generate_firmware_task: prettify output

Use a format string to align both columns (Package and Filename fields).
This commit is contained in:
Cyril Brulebois 2023-01-27 07:38:40 +01:00
parent d415c60a12
commit 2e61e76d86
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ sub check_packages($$@) {
if (!exists $seen{$filename}) {
$seen{$filename} = 1;
if (contains_firmware($mirror, $filename)) {
print STDERR " $pkg ($filename)\n";
printf STDERR " %-35s (%s)\n", $pkg, $filename;
if ($orig_mode) {
if ($use_bp) {
print OUT "$pkg/$codename-backports\n";