From 354babdc2e9921693e4ccaadbbc7ee433f4e14ba Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Fri, 21 Sep 2018 11:32:46 +0930 Subject: [PATCH] Fix installation command --- framework/core/src/Install/Console/InstallCommand.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/framework/core/src/Install/Console/InstallCommand.php b/framework/core/src/Install/Console/InstallCommand.php index e36ab06c5..e7f6792ab 100644 --- a/framework/core/src/Install/Console/InstallCommand.php +++ b/framework/core/src/Install/Console/InstallCommand.php @@ -249,12 +249,9 @@ class InstallCommand extends AbstractCommand protected function runMigrations() { + $this->migrator->setOutput($this->output); $this->migrator->getRepository()->createRepository(); $this->migrator->run(__DIR__.'/../../../migrations'); - - foreach ($this->migrator->getNotes() as $note) { - $this->info($note); - } } protected function writeSettings()