From 515f90950b764e7fd8c42811f3d0db3b90c0ce82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Monta=C3=B1ez?= Date: Fri, 6 Jan 2017 08:41:52 -0300 Subject: [PATCH] Remove ENV Variables --- Mage/Task/AbstractTask.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Mage/Task/AbstractTask.php b/Mage/Task/AbstractTask.php index ec1d4e0..4592991 100644 --- a/Mage/Task/AbstractTask.php +++ b/Mage/Task/AbstractTask.php @@ -222,7 +222,6 @@ abstract class AbstractTask */ final protected 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 {