Skip to content

Commit

Permalink
chore: unzip
Browse files Browse the repository at this point in the history
  • Loading branch information
jevantang committed Jun 11, 2023
1 parent bfc2e88 commit 6d6000c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/ThemeUnzipCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class ThemeUnzipCommand extends Command

public function handle()
{
$this->zip = new Zip();
$zip = new Zip();

$tmpDirPath = $this->zip->unpack($this->argument('path'));
$tmpDirPath = $zip->unpack($this->argument('path'));

$themeJsonPath = "{$tmpDirPath}/theme.json";
if (! file_exists($tmpDirPath)) {
Expand Down

0 comments on commit 6d6000c

Please sign in to comment.