Skip to content

Commit

Permalink
Merge pull request #54 from technodelight/feature/fix-generated-branc…
Browse files Browse the repository at this point in the history
…h-name

Fix generated branch name when remotes available
  • Loading branch information
technodelight authored Jul 14, 2017
2 parents fc9d2fa + 25193f0 commit 6b6d45a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private function chooseBranch(InputInterface $input, OutputInterface $output, Is
$generatedBranchOption = $this->generateBranchName($issue) . ' (generated)';
$question = new ChoiceQuestion(
'Select branch to checkout to',
array_merge($this->gitBranchesForIssue($issue), [$this->generateBranchName($issue) , ' (generated)']),
array_merge($this->gitBranchesForIssue($issue), [$this->generateBranchName($issue) . ' (generated)']),
0
);
$question->setErrorMessage('Branch %s is invalid.');
Expand Down

0 comments on commit 6b6d45a

Please sign in to comment.