diff --git a/console/controllers/ModuleController.php b/console/controllers/ModuleController.php index 546521f..81116a6 100644 --- a/console/controllers/ModuleController.php +++ b/console/controllers/ModuleController.php @@ -62,6 +62,8 @@ class ModuleController extends Controller { $path = \Yii::getAlias('@common/modules/' . $name); + echo ConsoleColor::log('Installing module: ', 'yellow') . ConsoleColor::log($name, 'white') . PHP_EOL; + // check exists if (file_exists($path)) { echo ConsoleColor::log('Module ' . $name . ' already exists', 'red') . PHP_EOL;