Browse Source

[AsseticBundle] fixed directory creation when writing assets

Kris Wallsmith 14 years ago
parent
commit
c565a33a4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Symfony/Bundle/AsseticBundle/Command/DumpCommand.php

+ 1 - 1
src/Symfony/Bundle/AsseticBundle/Command/DumpCommand.php

@@ -153,7 +153,7 @@ class DumpCommand extends Command
         $target = rtrim($basePath, '/') . '/' . $asset->getTargetUrl();
         if (!is_dir($dir = dirname($target))) {
             $output->writeln('<info>[dir+]</info> '.$dir);
-            if (false === @mkdir($dir)) {
+            if (false === @mkdir($dir, 0777, true)) {
                 throw new \RuntimeException('Unable to create directory '.$dir);
             }
         }