Skip to content

Commit 3e41842

Browse files
committed
Fix handler
1 parent 2bafe92 commit 3e41842

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/bref-dev-server

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ use Bref\DevServer\DevServer;
44

55
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
66
require_once __DIR__ . '/vendor/autoload.php';
7-
} elseif (file_exists(__DIR__ . '/../autoload.php')) {
8-
require_once __DIR__ . '/../autoload.php';
9-
} else {
7+
} elseif (file_exists(__DIR__ . '/../../autoload.php')) {
108
require_once __DIR__ . '/../../autoload.php';
9+
} else {
10+
require_once __DIR__ . '/../../../autoload.php';
1111
}
1212

1313
return (new DevServer)->run();

0 commit comments

Comments
 (0)