Skip to content

Commit

Permalink
fix(theme): issue when creating public asset directory
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetan-hexadog committed Apr 1, 2023
1 parent c83a62a commit 8e11c9a
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 8e11c9a

Please sign in to comment.