Use local $~
Signed-off-by: Nicolás Ortega Froysa <nicolas@ortegas.org>
This commit is contained in:
parent
1065595f6d
commit
e9eec6cfcc
11
pacundo.pl
11
pacundo.pl
@ -119,19 +119,16 @@ if (!$r_flag) {
|
|||||||
print("Last changes:\n");
|
print("Last changes:\n");
|
||||||
my $n = 1;
|
my $n = 1;
|
||||||
foreach my $tx (@undo_txs) {
|
foreach my $tx (@undo_txs) {
|
||||||
if ($tx->{action} =~ /(upgraded|downgraded)/) {
|
format UPGRFORMAT =
|
||||||
format UPGRFORMAT =
|
|
||||||
@|| @<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<< -> @<<<<<<<<<<<<<
|
@|| @<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<< -> @<<<<<<<<<<<<<
|
||||||
$n, $tx->{action}, $tx->{pkg_name}, $tx->{oldver}, $tx->{newver}
|
$n, $tx->{action}, $tx->{pkg_name}, $tx->{oldver}, $tx->{newver}
|
||||||
.
|
.
|
||||||
$~ = "UPGRFORMAT";
|
format INSTFORMAT =
|
||||||
} else {
|
|
||||||
format INSTFORMAT =
|
|
||||||
@|| @<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
@|| @<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||||||
$n, $tx->{action}, $tx->{pkg_name}
|
$n, $tx->{action}, $tx->{pkg_name}
|
||||||
.
|
.
|
||||||
$~ = "INSTFORMAT";
|
|
||||||
}
|
local $~ = ($tx->{action} =~ /(upgraded|downgraded)/) ? "UPGRFORMAT" : "INSTFORMAT";
|
||||||
write();
|
write();
|
||||||
$n++;
|
$n++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user