Merge branch 'develop' into feature/react-admin

This commit is contained in:
Matthew Penner
2021-03-12 14:13:22 -07:00
6 changed files with 25 additions and 14 deletions

View File

@@ -79,7 +79,7 @@ class UpgradeCommand extends Command
if (!$skipDownload) {
$this->withProgress($bar, function () {
$this->line("\$upgrader> curl -L \"{$this->getUrl()}\" | tar -xzv");
$process = Process::fromShellCommandline("curl -L \"{$this->getUrl()}\" | tar -xzvf");
$process = Process::fromShellCommandline("curl -L \"{$this->getUrl()}\" | tar -xzv");
$process->run(function ($type, $buffer) {
$this->{$type === Process::ERR ? 'error' : 'line'}($buffer);
});