From fe708333b1ef9b64b189d03fd653faee5be81412 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sun, 14 Aug 2016 10:43:16 +0200 Subject: [PATCH] Fixed path while generating config file --- module/CLI/src/Command/Install/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/CLI/src/Command/Install/InstallCommand.php b/module/CLI/src/Command/Install/InstallCommand.php index 8d1c533e..68bba5b8 100644 --- a/module/CLI/src/Command/Install/InstallCommand.php +++ b/module/CLI/src/Command/Install/InstallCommand.php @@ -84,7 +84,7 @@ class InstallCommand extends Command // Generate config params files $config = $this->buildAppConfig($params); - $this->configWriter->toFile('config/params/generated_config.php', $config); + $this->configWriter->toFile(__DIR__ . '/../../../../../config/params/generated_config.php', $config, false); $output->writeln('Custom configuration properly generated!'); }