Browse Source

Update AbstractTask.php

1.0
Andrés Montañez 10 years ago
parent
commit
861a823f7e
  1. 2
      Mage/Task/AbstractTask.php

2
Mage/Task/AbstractTask.php

@ -223,7 +223,7 @@ abstract class AbstractTask
*/ */
protected final function runCommand($command, &$output = null) protected final function runCommand($command, &$output = null)
{ {
if ($this->getStage() == self::STAGE_DEPLOY) { if ($this->getStage() == self::STAGE_DEPLOY || $this->getStage() == self::STAGE_POST_RELEASE) {
return $this->runCommandRemote($command, $output); return $this->runCommandRemote($command, $output);
} else { } else {
return $this->runCommandLocal($command, $output); return $this->runCommandLocal($command, $output);

Loading…
Cancel
Save