Respect LARAVEL_ENV variable
Laravel **should** respect `LARAVEL_ENV` variable when running through CLI
This commit is contained in:
parent
05cb1ea5ad
commit
77679a5659
|
@ -171,9 +171,9 @@
|
||||||
|
|
||||||
if (Request::cli())
|
if (Request::cli())
|
||||||
{
|
{
|
||||||
$environment = get_cli_option('env');
|
$environment = get_cli_option('env', getenv('LARAVEL_ENV'));
|
||||||
|
|
||||||
if ( ! isset($environment))
|
if (empty($environment))
|
||||||
{
|
{
|
||||||
$environment = Request::detect_env($environments, gethostname());
|
$environment = Request::detect_env($environments, gethostname());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue