Skip to content

Commit d6d4290

Browse files
[FrameworkBundle] Fix AssetsInstallCommand
1 parent 4979e91 commit d6d4290

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Command/AssetsInstallCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ private function absoluteSymlinkWithFallback($originDir, $targetDir)
262262
private function symlink($originDir, $targetDir, $relative = false)
263263
{
264264
if ($relative) {
265+
$this->filesystem->mkdir(dirname($targetDir));
265266
$originDir = $this->filesystem->makePathRelative($originDir, realpath(dirname($targetDir)));
266267
}
267268
$this->filesystem->symlink($originDir, $targetDir);

0 commit comments

Comments
 (0)