Skip to content

Commit

Permalink
Prevent timeout during install:eloquent-driver command
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean committed Oct 14, 2024
1 parent ef4f7d7 commit ccc4f47
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 ccc4f47

Please sign in to comment.