Skip to content

Commit ea51e2d

Browse files
Merge pull request #53 from hexadog/develop
fix(theme): issue when creating public asset directory
2 parents a2dd56a + 8e11c9a commit ea51e2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Theme.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ protected function assertPublicAssetsPath()
389389

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

395395
// Create target symlink public theme assets directory if required

0 commit comments

Comments
 (0)