mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-23 07:12:40 +01:00
Make arc diff not crash on hg bookmarks
This commit is contained in:
parent
032b9b30b0
commit
b8fb074dcf
1 changed files with 3 additions and 0 deletions
|
@ -176,6 +176,9 @@ final class ArcanistMercurialParser {
|
||||||
case 'tag':
|
case 'tag':
|
||||||
$commit['tag'] = $value;
|
$commit['tag'] = $value;
|
||||||
break;
|
break;
|
||||||
|
case 'bookmark':
|
||||||
|
$commit['bookmark'] = $value;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
throw new Exception("Unknown Mercurial log field '{$name}'!");
|
throw new Exception("Unknown Mercurial log field '{$name}'!");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue