From a6a9c72a7557e58bd7c7cfb08399e4035a5c2ac6 Mon Sep 17 00:00:00 2001 From: Austin Morris Date: Thu, 24 Jul 2014 09:52:55 -0400 Subject: [PATCH] Fix the composer autoload paths for the doctrine CLT --- bin/doctrine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doctrine.php b/bin/doctrine.php index 438003245..842c5493f 100755 --- a/bin/doctrine.php +++ b/bin/doctrine.php @@ -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)) {