diff --git a/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php index 5f71125d0..412cf869b 100644 --- a/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php +++ b/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php @@ -79,6 +79,10 @@ EOT $destPath = $em->getConfiguration()->getProxyDir(); } + if ( ! is_dir($destPath)) { + mkdir($destPath, 0777, true); + } + $destPath = realpath($destPath); if ( ! file_exists($destPath)) {