remove vim comments / fix indent

This commit is contained in:
Aaron Bieber 2024-08-01 19:55:48 -06:00
parent 650b8645a1
commit 34bfacbaa5
No known key found for this signature in database

View File

@ -1,8 +1,5 @@
#!/usr/bin/perl #!/usr/bin/perl
# vim: set ts=4 sw=4 tw=0:
# vim: set expandtab:
use strict; use strict;
use warnings; use warnings;
use v5.32; use v5.32;
@ -142,8 +139,7 @@ sub figure_status {
else { else {
$release = "stable"; $release = "stable";
foreach my $s (@stable) { foreach my $s (@stable) {
# handle this stuff with a regex so we don't have to specify "22.11" kinda stuff
# handle this stuff with a regex so we don't have to specify "22.11" kinda stuff
my @b = grep /$s/, @{$list}; my @b = grep /$s/, @{$list};
my $ns = $b[0]; my $ns = $b[0];
if ( defined $ns ) { if ( defined $ns ) {