mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-29 10:12:41 +01:00
Merge pull request #62 from bonneval/bugfixUndefinedVariable
Bugfixed undefined variable $commit.
This commit is contained in:
commit
955c5b8820
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ final class ArcanistMercurialAPI extends ArcanistRepositoryAPI {
|
||||||
protected function buildBaseCommit($symbolic_commit) {
|
protected function buildBaseCommit($symbolic_commit) {
|
||||||
if ($symbolic_commit !== null) {
|
if ($symbolic_commit !== null) {
|
||||||
try {
|
try {
|
||||||
$commit = $this->getCanonicalRevisionName($commit);
|
$commit = $this->getCanonicalRevisionName($symbolic_commit);
|
||||||
} catch (Exception $ex) {
|
} catch (Exception $ex) {
|
||||||
throw new ArcanistUsageException(
|
throw new ArcanistUsageException(
|
||||||
"Commit '{$commit}' is not a valid Mercurial commit identifier.");
|
"Commit '{$commit}' is not a valid Mercurial commit identifier.");
|
||||||
|
|
Loading…
Reference in a new issue