chore: allow server path via env
Signed-off-by: Saw-jan <saw.jan.grg3e@gmail.com>
This commit is contained in:
Родитель
9ab0f0e8d8
Коммит
b6947d6ac5
|
@ -4,7 +4,9 @@ define('PHPUNIT_RUN', 1);
|
|||
use Composer\Autoload\ClassLoader;
|
||||
|
||||
include_once __DIR__.'/vendor/autoload.php';
|
||||
if (file_exists(__DIR__ . '/server')) {
|
||||
if (getenv('SERVER_PATH')) {
|
||||
$serverPath = getenv('SERVER_PATH');
|
||||
} elseif (file_exists(__DIR__ . '/server')) {
|
||||
$serverPath = __DIR__ . '/server';
|
||||
} else {
|
||||
$serverPath = __DIR__ . '/../..';
|
||||
|
|
Загрузка…
Ссылка в новой задаче