mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
SVN error message may also be "File not found"
This commit is contained in:
parent
fbef90c4c6
commit
e4093e8013
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class PhabricatorRepositorySvnCommitDiscoveryDaemon
|
||||||
$uri,
|
$uri,
|
||||||
$upper_bound - 1);
|
$upper_bound - 1);
|
||||||
if ($err) {
|
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
|
// We've gone all the way back through history and this path was not
|
||||||
// affected by earlier commits.
|
// affected by earlier commits.
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue