Fix indentation in linux-version.

This commit is contained in:
Captain ALM 2024-06-01 13:46:37 +01:00
parent 8a2d80f1c5
commit 4a65e53ed8
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1
1 changed files with 6 additions and 6 deletions

View File

@ -91,13 +91,13 @@ sub list_versions {
}
my $sig = '.sig';
for (image_list()) {
my ($version, $path) = @$_;
my ($version, $path) = @$_;
unless ($path =~ /\Q$sig\E$/) {
if ($show_paths) {
print "$version $path\n";
} else {
print "$version\n";
}
if ($show_paths) {
print "$version $path\n";
} else {
print "$version\n";
}
}
}
exit 0;