diff --git a/src/repository/parser/mercurial/ArcanistMercurialParser.php b/src/repository/parser/mercurial/ArcanistMercurialParser.php index 7ce13097..7847bd9f 100644 --- a/src/repository/parser/mercurial/ArcanistMercurialParser.php +++ b/src/repository/parser/mercurial/ArcanistMercurialParser.php @@ -176,6 +176,9 @@ final class ArcanistMercurialParser { case 'tag': $commit['tag'] = $value; break; + case 'bookmark': + $commit['bookmark'] = $value; + break; default: throw new Exception("Unknown Mercurial log field '{$name}'!"); }