From 80ce5968db5f28c63a17b282417f017c0bf405b3 Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 20 May 2013 12:41:09 -0700 Subject: [PATCH] Minor, fix a variable name that I derped in recent refactoring. Auditors: btrahan --- .../repository/engine/PhabricatorRepositoryPullEngine.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/repository/engine/PhabricatorRepositoryPullEngine.php b/src/applications/repository/engine/PhabricatorRepositoryPullEngine.php index 9aafcceb87..777e1e0a11 100644 --- a/src/applications/repository/engine/PhabricatorRepositoryPullEngine.php +++ b/src/applications/repository/engine/PhabricatorRepositoryPullEngine.php @@ -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 ".