Skip to content

Commit

Permalink
Update Process.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Nenglish7 authored Mar 27, 2018
1 parent 9a8a6a9 commit 67bc463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Process.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function run()
if ($this->commandType == 'install') {
$complete = 0;
$out = array();
\exec('composer install' . $optionLine . '2>&1', $out, $complete);
\exec('composer install 2>&1' . $optionLine . '', $out, $complete);
if ($complete !== 0) {
die('<code>We are not able to run `composer install`. If you do not have composer installed please see <a href="https://getcomposer.org/">https://getcomposer.org/</a>. <br>(Error #' . $complete . ') Here is the output of the command:<br>' . implode("<br>", $out) . '</code>');
}
Expand Down

0 comments on commit 67bc463

Please sign in to comment.