diff --git a/Mage/Task/AbstractTask.php b/Mage/Task/AbstractTask.php index 3637148..14bf390 100644 --- a/Mage/Task/AbstractTask.php +++ b/Mage/Task/AbstractTask.php @@ -224,6 +224,7 @@ abstract class AbstractTask */ protected final function runCommand($command, &$output = null) { + $command = ltrim($this->getEnvVarsString() . ' ' . $command); if ($this->getStage() == self::STAGE_DEPLOY || $this->getStage() == self::STAGE_POST_RELEASE) { return $this->runCommandRemote($command, $output); } else {