Skip to content

Commit

Permalink
Merge pull request #53 from hexadog/develop
Browse files Browse the repository at this point in the history
fix(theme): issue when creating public asset directory
  • Loading branch information
gaetan-hexadog authored Apr 1, 2023
2 parents a2dd56a + 8e11c9a commit ea51e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Theme.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ protected function assertPublicAssetsPath()

// Create target public theme vendor directory if required
if (!file_exists($publicThemeVendorPath)) {
app(Filesystem::class)->makeDirectory($publicThemeVendorPath, 0755);
app(Filesystem::class)->makeDirectory($publicThemeVendorPath, 0755, true);
}

// Create target symlink public theme assets directory if required
Expand Down

0 comments on commit ea51e2d

Please sign in to comment.