Commit 8a2183b2 authored by Christian Beier's avatar Christian Beier

Fix skipping of merge commits in log convert script.

parent eeafad20
......@@ -321,9 +321,10 @@ while (my $_l = <$fh>) {
# Luis Mondesi <lemsx1@gmail.com>
my $_s = $_l;
$_s =~ s/^ //g;
if ($_s =~ m/^Merge branch/)
if ($_s =~ m/^Merge branch|^Merge remote branch/)
{
$state=0;
$author=0;
next;
}
$comment = $comment . $_s;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment