Skip to content

Commit

Permalink
Merge pull request #26 from enesdemir/master
Browse files Browse the repository at this point in the history
Update InstallArc.php
  • Loading branch information
richdynamix authored Apr 28, 2021
2 parents 0174da9 + 03ba656 commit d0ac99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/InstallArc.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function handle()
private function runComposer($cmd): void
{
if ($cmd) {
$process = new Process($cmd, null, array_merge($_SERVER, $_ENV), null, null);
$process = Process::fromShellCommandline($cmd, null, array_merge($_SERVER, $_ENV), null, null);
$process->run(function ($type, $line) {
$this->line($line);
});
Expand Down

0 comments on commit d0ac99f

Please sign in to comment.