1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 21:02:41 +01:00

Merge pull request #55 from svemir/patch1

SVN error message may also be "File not found"
This commit is contained in:
Evan Priestley 2011-08-22 15:22:24 -07:00
commit 3dbe60b388

View file

@ -64,7 +64,7 @@ class PhabricatorRepositorySvnCommitDiscoveryDaemon
$uri,
$upper_bound - 1);
if ($err) {
if (preg_match('/path not found/', $stderr)) {
if (preg_match('/(path|File) not found/', $stderr)) {
// We've gone all the way back through history and this path was not
// affected by earlier commits.
break;