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:
parent
b0a5f42244
commit
80ce5968db
1 changed files with 2 additions and 2 deletions
|
@ -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 ".
|
||||
|
|
Loading…
Reference in a new issue