1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-20 08:58:55 +02:00

Invalidate SVN status cache after adding files

Summary: Cache invalidation is really one of the two hardest computer science problems.

Test Plan:
  lang=sh
  # in Subversion repository
  $ arc diff .arcconfig # untracked

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin, AnhNhan

Differential Revision: https://secure.phabricator.com/D5600
This commit is contained in:
Jakub Vrana 2013-04-06 09:25:35 -07:00
parent 3af36c6a4e
commit dbe0f7dc09

View file

@ -195,6 +195,7 @@ final class ArcanistSubversionAPI extends ArcanistRepositoryAPI {
'delete -- %Ls',
array_diff($paths, $add));
}
$this->svnStatus = null;
}
public function getSVNProperty($path, $property) {