Skip to content

Commit 76f5076

Browse files
authored
remove file archive flag
1 parent 9d500f1 commit 76f5076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Console/Commands/UpgradeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function handle()
7979
if (!$skipDownload) {
8080
$this->withProgress($bar, function () {
8181
$this->line("\$upgrader> curl -L \"{$this->getUrl()}\" | tar -xzv");
82-
$process = Process::fromShellCommandline("curl -L \"{$this->getUrl()}\" | tar -xzvf");
82+
$process = Process::fromShellCommandline("curl -L \"{$this->getUrl()}\" | tar -xzv");
8383
$process->run(function ($type, $buffer) {
8484
$this->{$type === Process::ERR ? 'error' : 'line'}($buffer);
8585
});

0 commit comments

Comments
 (0)