mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-12-29 00:40:57 +01:00
(stable) Promote 2017 Week 40
This commit is contained in:
commit
282b83bcbe
2 changed files with 7 additions and 3 deletions
|
@ -497,6 +497,10 @@ final class ArcanistGitAPI extends ArcanistRepositoryAPI {
|
|||
return null;
|
||||
}
|
||||
|
||||
if (!strlen($branch)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $branch;
|
||||
}
|
||||
|
||||
|
@ -509,7 +513,7 @@ final class ArcanistGitAPI extends ArcanistRepositoryAPI {
|
|||
// Verify this, and strip it.
|
||||
$ref = rtrim($stdout);
|
||||
$branch = $this->getBranchNameFromRef($ref);
|
||||
if (!$branch) {
|
||||
if ($branch === null) {
|
||||
throw new Exception(
|
||||
pht('Failed to parse %s output!', 'git symbolic-ref'));
|
||||
}
|
||||
|
@ -1015,7 +1019,7 @@ final class ArcanistGitAPI extends ArcanistRepositoryAPI {
|
|||
list($ref, $hash, $epoch, $tree, $desc, $text) = $fields;
|
||||
|
||||
$branch = $this->getBranchNameFromRef($ref);
|
||||
if ($branch) {
|
||||
if ($branch !== null) {
|
||||
$result[] = array(
|
||||
'current' => ($branch === $current),
|
||||
'name' => $branch,
|
||||
|
|
|
@ -444,7 +444,7 @@ EOTEXT
|
|||
$branch = $this->getArgument('branch');
|
||||
if (empty($branch)) {
|
||||
$branch = $this->getBranchOrBookmark();
|
||||
if ($branch) {
|
||||
if ($branch !== null) {
|
||||
$this->branchType = $this->getBranchType($branch);
|
||||
|
||||
// TODO: This message is misleading when landing a detached head or
|
||||
|
|
Loading…
Reference in a new issue