Skip to content

Commit

Permalink
Merge pull request #13 from WeareJH/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mikeymike authored Mar 1, 2017
2 parents e864460 + 4d3ecac commit 0e66aab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/StaticsMergerPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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('<error>Failed to install dependencies for "%s" </error>', $package->getPrettyName())
);
Expand All @@ -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('<error>Static package "%s" failed to build </error>', $package->getPrettyName())
);
Expand Down

0 comments on commit 0e66aab

Please sign in to comment.