remove file archive flag

This commit is contained in:
Alex
2021-03-08 12:19:20 +02:00
committed by GitHub
parent 9d500f1c49
commit 76f507656c

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);
});