We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da161f1 commit f9796ebCopy full SHA for f9796eb
1 file changed
src/Console/Installer.php
@@ -83,7 +83,7 @@ public static function createAppLocalConfig(string $dir, IOInterface $io): void
83
{
84
$appLocalConfig = $dir . '/config/app_local.php';
85
$appLocalConfigTemplate = $dir . '/config/app_local.example.php';
86
- if (!file_exists($appLocalConfigTemplate) && !file_exists($appLocalConfig)) {
+ if (file_exists($appLocalConfigTemplate) && !file_exists($appLocalConfig)) {
87
copy($appLocalConfigTemplate, $appLocalConfig);
88
$io->write('Created `config/app_local.php` file');
89
}
0 commit comments