Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Fix autoload path at composer library
Browse files Browse the repository at this point in the history
  • Loading branch information
panlatent committed Apr 3, 2017
1 parent 2c2e5e7 commit 27348a7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/site-cli
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
require(__DIR__ . '/../vendor/autoload.php');
} elseif (file_exists(__DIR__ . '/../autoload.php')) {
require(__DIR__ . '/../autoload.php');
} elseif (file_exists(__DIR__ . '/../../../autoload.php')) {
require(__DIR__ . '/../../../autoload.php');
} else {
die('Not found autoload.php');
}
Expand Down

0 comments on commit 27348a7

Please sign in to comment.