Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Eric Wong authored and Martin Langhoff committed Dec 11, 2005
1 parent 3e525e6 commit 6e33101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-archimport.perl
Expand Up @@ -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\}/!;
Expand All @@ -804,7 +804,7 @@ sub parselog {
}
push @tmp, $t;
}
$ps->{$k} = \@tmp if scalar @tmp;
$ps->{$k} = \@tmp;
}
}

Expand Down

0 comments on commit 6e33101

Please sign in to comment.