1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 05:50:55 +01:00

Minor, fix a variable name that I derped in recent refactoring.

Auditors: btrahan
This commit is contained in:
epriestley 2013-05-20 12:41:09 -07:00
parent b0a5f42244
commit 80ce5968db

View file

@ -140,14 +140,14 @@ final class PhabricatorRepositoryPullEngine
if (empty($repo_path)) {
$err = true;
$msg =
$message =
"Expected to find a git repository at '{$path}', but ".
"there was no result from `git rev-parse --show-toplevel`. ".
"Something is misconfigured or broken. The git repository ".
"may be inside a '.git/' directory.";
} else if (!Filesystem::pathsAreEquivalent($repo_path, $path)) {
$err = true;
$msg =
$message =
"Expected to find repo at '{$path}', but the actual ".
"git repository root for this directory is '{$repo_path}'. ".
"Something is misconfigured. The repository's 'Local Path' should ".