From 5864727d7617d6ad7842e8a26052b92e699af9be Mon Sep 17 00:00:00 2001 From: Michael Woodward Date: Wed, 1 Mar 2017 14:14:22 +0000 Subject: [PATCH] Show STDERR output too --- src/StaticsMergerPlugin.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/StaticsMergerPlugin.php b/src/StaticsMergerPlugin.php index 8cf35f1..099be15 100644 --- a/src/StaticsMergerPlugin.php +++ b/src/StaticsMergerPlugin.php @@ -154,6 +154,7 @@ public function staticsCompile() $dependencyProcess->mustRun(); } catch (ProcessFailedException $e) { $this->io->write($dependencyProcess->getOutput()); + $this->io->write($dependencyProcess->getErrorOutput()); $this->io->write( sprintf('Failed to install dependencies for "%s" ', $package->getPrettyName()) ); @@ -167,6 +168,7 @@ public function staticsCompile() $buildProcess->mustRun(); } catch (ProcessFailedException $e) { $this->io->write($buildProcess->getOutput()); + $this->io->write($buildProcess->getErrorOutput()); $this->io->write( sprintf('Static package "%s" failed to build ', $package->getPrettyName()) );