Browse Source

Correctly deal with the compiled file

Graham Campbell 10 years ago
parent
commit
c4aff28a4a
1 changed files with 5 additions and 3 deletions
  1. 5 3
      bootstrap/autoload.php

+ 5 - 3
bootstrap/autoload.php

@@ -27,9 +27,11 @@ require __DIR__.'/../vendor/autoload.php';
 |
 |
 */
 */
 
 
-$compiledPath = __DIR__.'/../vendor/compiled.php';
-
-if (file_exists($compiledPath))
+if (file_exists($compiledPath = __DIR__.'/../vendor/compiled.php';))
+{
+	require $compiledPath;
+}
+elseif (file_exists($compiledPath = __DIR__.'/../storage/framework/compiled.php';))
 {
 {
 	require $compiledPath;
 	require $compiledPath;
 }
 }