Skip to content

Commit

Permalink
refactor: lando quality improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
millnut committed Sep 25, 2023
1 parent 498f9a2 commit db1b4aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/composer/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,6 @@
if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) {
include $app_root . '/' . $site_path . '/settings.local.php';
}
elseif (file_exists($app_root . '/' . $site_path . '/settings.lando.php')) {
elseif (getenv('LANDO_SERVICE_NAME') == 'appserver' && file_exists($app_root . '/' . $site_path . '/settings.lando.php')) {
include $app_root . '/' . $site_path . '/settings.lando.php';
}

0 comments on commit db1b4aa

Please sign in to comment.