Przeglądaj źródła

Merge remote branch 'kriswallsmith/assetic/mkdir-fix'

Fabien Potencier 14 lat temu
rodzic
commit
ecceea57f7

+ 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);
             }
         }