mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-21 22:32:41 +01:00
Correctly parse conflicted files out of SVN XML.
Summary: Test Plan: Reviewers: CC:
This commit is contained in:
parent
0eecd3108f
commit
fe256c59f4
1 changed files with 3 additions and 0 deletions
|
@ -109,6 +109,9 @@ class ArcanistSubversionAPI extends ArcanistRepositoryAPI {
|
|||
case 'deleted':
|
||||
$mask |= self::FLAG_DELETED;
|
||||
break;
|
||||
case 'conflicted':
|
||||
$mask |= self::FLAG_CONFLICT;
|
||||
break;
|
||||
default:
|
||||
throw new Exception("Unrecognized item status '{$item}'.");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue