Skip to content

Commit

Permalink
[5.x] Prevent timeout during install:eloquent-driver command (#10955)
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean authored Oct 14, 2024
1 parent ffe4cc1 commit 311fce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Commands/InstallEloquentDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ private function runArtisanCommand(string $command, bool $writeOutput = false):
explode(' ', $command)
);

$result = Process::run($components, function ($type, $line) use ($writeOutput) {
$result = Process::forever()->run($components, function ($type, $line) use ($writeOutput) {
if ($writeOutput) {
$this->output->write($line);
}
Expand Down

0 comments on commit 311fce1

Please sign in to comment.