From f3d21a0839bd36f62522d684b5b4161dbf224249 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Thu, 8 Aug 2024 20:13:58 +0700 Subject: [PATCH] Update common.php --- common.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.php b/common.php index dfc54f43d..f2d08db51 100644 --- a/common.php +++ b/common.php @@ -54,7 +54,7 @@ require_once BB_PATH . '/library/defines.php'; // Composer if (!is_file(BB_PATH . '/vendor/autoload.php')) { - die('Please install composer and run composer install'); + die('Please install composer and run composer install
Or run php ' . basename(__FILE__) . ' in CLI mode'); } require_once BB_PATH . '/vendor/autoload.php'; @@ -75,7 +75,7 @@ try { $dotenv = Dotenv\Dotenv::createMutable(BB_PATH); $dotenv->load(); } catch (\Dotenv\Exception\InvalidPathException $pathException) { - die('Please rename from .env.example to .env, and configure it'); + die('Please rename from .env.example to .env, and configure it.
Or run php ' . basename(__FILE__) . ' in CLI mode'); } // Load config