Skip to content

Commit

Permalink
Catch both STDOUT and STDERR output; fixes #71
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarius committed May 4, 2023
1 parent 0bb7eab commit c3b5cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/BaseExecCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ protected function doExecute(
new LocalSemaphore($w),
function ($value) use ($command, $placeholder, $output, $logger, &$hasErrors) {
$sCommand = $command->with([$placeholder => $value]);
$process = new Process($sCommand);
$process = new Process("($sCommand) 2>&1");

$output->writeln("Current site: $value");

Expand Down

0 comments on commit c3b5cfc

Please sign in to comment.