diff --git a/src/MagentoHackathon/Composer/Magento/DeployManager.php b/src/MagentoHackathon/Composer/Magento/DeployManager.php index 1376091..563c5c6 100644 --- a/src/MagentoHackathon/Composer/Magento/DeployManager.php +++ b/src/MagentoHackathon/Composer/Magento/DeployManager.php @@ -93,13 +93,7 @@ public function doDeploy() if ($this->io->isDebug()) { $this->io->write('start magento deploy for ' . $package->getPackageName()); } - try { - $package->getDeployStrategy()->deploy(); - } catch (\ErrorException $e) { - if ($this->io->isDebug()) { - $this->io->write($e->getMessage()); - } - } + $package->getDeployStrategy()->deploy(); } }