Skip to content
Snippets Groups Projects
Commit c18a07eb authored by Maddy Chellathurai's avatar Maddy Chellathurai
Browse files

MAGETWO-51371: Wrong message in CLI output for installation

- changing way string append is done.
parent 8fd3e8af
Branches
No related merge requests found
......@@ -824,7 +824,7 @@ class Installer
$this->log->log("Module '{$moduleName}':");
$modulePostUpdater = $this->getSchemaDataHandler($moduleName, $handlerType);
if ($modulePostUpdater) {
$this->log->logInline('Running ' + str_replace('-', ' ', $handlerType) + '...');
$this->log->logInline('Running ' . str_replace('-', ' ', $handlerType) . '...');
$modulePostUpdater->install($setup, $moduleContextList[$moduleName]);
}
$this->logProgress();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment