Merge pull request #50 from dlin-me/master

Fixed a bug in the builtin ChangeBranchTask.php
This commit is contained in:
Andrés Montañez
2014-04-26 12:57:51 -07:00
+1 -2
View File
@@ -63,8 +63,7 @@ class ChangeBranchTask extends AbstractTask
*/
public function run()
{
$scmConfig = $this->getConfig()->general('scm', array());
switch ((isset($scmConfig['type']) ? $scmConfig['type'] : false)) {
switch ($this->getConfig()->general('scm')) {
case 'git':
if ($this->getParameter('_changeBranchRevert', false)) {
$command = 'git checkout ' . self::$startingBranch;