Ensure slow commands have time to run
This commit is contained in:
parent
fd9245b2c5
commit
2a8d336336
1 changed files with 3 additions and 1 deletions
|
@ -105,6 +105,7 @@ class UpgradeCommand extends Command
|
|||
|
||||
$this->line('$upgrader> ' . implode(' ', $command));
|
||||
$process = new Process($command);
|
||||
$process->setTimeout(10 * 60);
|
||||
$process->run(function ($type, $buffer) {
|
||||
$this->line($buffer);
|
||||
});
|
||||
|
@ -134,7 +135,8 @@ class UpgradeCommand extends Command
|
|||
|
||||
$this->withProgress($bar, function () use ($user) {
|
||||
$this->line("\$upgrader> chown -R {$user}:{$user} *");
|
||||
$process = Process::fromShellCommandline("chown -R {$user}:{$user} *");
|
||||
$process = Process::fromShellCommandline("chown -R {$user}:{$user} *", $this->getLaravel()->basePath());
|
||||
$process->setTimeout(10 * 60);
|
||||
$process->run(function ($type, $buffer) {
|
||||
$this->{$type === Process::ERR ? 'error' : 'line'}($buffer);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue