From 861a823f7ea7b3183b7a7acb8bddabf8944c0d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Monta=C3=B1ez?= Date: Sat, 11 Oct 2014 21:16:42 -0200 Subject: [PATCH] Update AbstractTask.php --- Mage/Task/AbstractTask.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/Task/AbstractTask.php b/Mage/Task/AbstractTask.php index bc12f5f..663b387 100644 --- a/Mage/Task/AbstractTask.php +++ b/Mage/Task/AbstractTask.php @@ -223,7 +223,7 @@ abstract class AbstractTask */ 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); } else { return $this->runCommandLocal($command, $output);