Browse Source

Remove ENV Variables

1.0 1.0.7
Andrés Montañez 8 years ago
parent
commit
515f90950b
  1. 1
      Mage/Task/AbstractTask.php

1
Mage/Task/AbstractTask.php

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

Loading…
Cancel
Save