1
0
mirror of synced 2025-01-09 18:47:10 +03:00

Merge pull request #1088 from austinsmorris/fix-clt-autoload-path

Fix the composer autoload paths for the doctrine CLT
This commit is contained in:
Marco Pivetta 2014-07-24 17:34:21 +02:00
commit 089cca636e

View File

@ -21,7 +21,7 @@ use Symfony\Component\Console\Helper\HelperSet;
use Doctrine\ORM\Tools\Console\ConsoleRunner;
$autoloadFiles = array(__DIR__ . '/../vendor/autoload.php',
__DIR__ . '/../vendor/autoload.php');
__DIR__ . '/../../../autoload.php');
foreach ($autoloadFiles as $autoloadFile) {
if (file_exists($autoloadFile)) {