Fix filter regex.

Signed-off-by: Nicolás Ortega Froysa <nicolas@ortegas.org>
This commit is contained in:
Nicolás A. Ortega Froysa 2024-03-28 11:14:16 +01:00
parent 615f491433
commit a458f2dc67

View File

@ -129,7 +129,7 @@ $n, $tx->{action}, $tx->{pkg_name}
push(@sel, ($start..$end));
}
@sel = sort grep({!/[0-9+]-[0-9+]/} @sel);
@sel = sort grep({!/[0-9]+-[0-9]+/} @sel);
my @sel_undo;
push(@sel_undo, $undo_txs[$_-1]) foreach (@sel);