1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-06 07:36:37 +02:00

archimport: Fix a bug I introduced in the new log parser

This fixes the case (that worked originally in Martin's version)
where the only new/modified files are Arch control files.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
This commit is contained in:
Eric Wong 2005-11-23 23:56:31 -08:00 committed by Martin Langhoff
parent 3e525e6738
commit 6e33101abd

View File

@ -790,7 +790,7 @@ sub parselog {
# skip Arch control files, unescape pika-escaped files
foreach my $k (keys %want_headers) {
next unless (defined $ps->{$k});
my @tmp;
my @tmp = ();
foreach my $t (@{$ps->{$k}}) {
next unless length ($t);
next if $t =~ m!\{arch\}/!;
@ -804,7 +804,7 @@ sub parselog {
}
push @tmp, $t;
}
$ps->{$k} = \@tmp if scalar @tmp;
$ps->{$k} = \@tmp;
}
}