Skip to content

Commit

Permalink
Bug fixed during first manifest file creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Spomky committed Jan 14, 2024
1 parent 340083c commit 76d133a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/GenerateManifestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}

try {
if (! $this->filesystem->exists($this->dest['manifest_filepath'])) {
$this->filesystem->mkdir($this->dest['manifest_filepath']);
if (! $this->filesystem->exists(dirname($this->dest['manifest_filepath']))) {
$this->filesystem->mkdir(dirname($this->dest['manifest_filepath']));
}
file_put_contents(
(string) $this->dest['manifest_filepath'],
Expand Down

0 comments on commit 76d133a

Please sign in to comment.