Skip to content

Commit

Permalink
TE-3794 Use array instead of string for Process.
Browse files Browse the repository at this point in the history
  • Loading branch information
stereomon committed Jul 25, 2019
1 parent 1aba4d4 commit 6b3d119
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ protected function getCommand()
protected function runCommand($command)
{
$this->info('Run command: ' . $command);
$process = new Process($command, APPLICATION_ROOT_DIR);
$process = new Process(explode(' ', $command), APPLICATION_ROOT_DIR);
$process->setTimeout(null);
$process->run(function ($type, $buffer) {
echo $buffer;
Expand Down

0 comments on commit 6b3d119

Please sign in to comment.