1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-10 23:01:04 +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)) { if (empty($repo_path)) {
$err = true; $err = true;
$msg = $message =
"Expected to find a git repository at '{$path}', but ". "Expected to find a git repository at '{$path}', but ".
"there was no result from `git rev-parse --show-toplevel`. ". "there was no result from `git rev-parse --show-toplevel`. ".
"Something is misconfigured or broken. The git repository ". "Something is misconfigured or broken. The git repository ".
"may be inside a '.git/' directory."; "may be inside a '.git/' directory.";
} else if (!Filesystem::pathsAreEquivalent($repo_path, $path)) { } else if (!Filesystem::pathsAreEquivalent($repo_path, $path)) {
$err = true; $err = true;
$msg = $message =
"Expected to find repo at '{$path}', but the actual ". "Expected to find repo at '{$path}', but the actual ".
"git repository root for this directory is '{$repo_path}'. ". "git repository root for this directory is '{$repo_path}'. ".
"Something is misconfigured. The repository's 'Local Path' should ". "Something is misconfigured. The repository's 'Local Path' should ".