We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d500f1 commit 76f5076Copy full SHA for 76f5076
app/Console/Commands/UpgradeCommand.php
@@ -79,7 +79,7 @@ public function handle()
79
if (!$skipDownload) {
80
$this->withProgress($bar, function () {
81
$this->line("\$upgrader> curl -L \"{$this->getUrl()}\" | tar -xzv");
82
- $process = Process::fromShellCommandline("curl -L \"{$this->getUrl()}\" | tar -xzvf");
+ $process = Process::fromShellCommandline("curl -L \"{$this->getUrl()}\" | tar -xzv");
83
$process->run(function ($type, $buffer) {
84
$this->{$type === Process::ERR ? 'error' : 'line'}($buffer);
85
});
0 commit comments