diff --git a/src/Commands/BsLibCommands.php b/src/Commands/BsLibCommands.php index 974fbfe..edd3aaf 100644 --- a/src/Commands/BsLibCommands.php +++ b/src/Commands/BsLibCommands.php @@ -46,7 +46,7 @@ class BsLibCommands extends DrushCommands { throw new \Exception('The machine-readable name "' . $child_machine_name . '" must contain only lowercase letters, numbers, and hyphens.'); } - $this->output()->writeln("[info] Starting $child_machine_name theme creation"); + $this->output()->writeln("Starting $child_machine_name theme creation"); // Parent theme should exist. $parent_path = $this->drupalGetThemePath($parent_machine_name); @@ -139,7 +139,7 @@ class BsLibCommands extends DrushCommands { * @throws \Exception */ public function themeUpdate($target_machine_name) { - $this->output()->writeln("[info] Updating a $target_machine_name theme"); + $this->output()->writeln("Updating a $target_machine_name theme"); $target_path = $this->drupalGetThemePath($target_machine_name); if (empty($target_path)) { @@ -202,7 +202,7 @@ class BsLibCommands extends DrushCommands { * Download custom_theme build dependencies and build all CSS files. */ public function themeBuild($theme_machine_name) { - $this->output()->writeln("[info] Building CSS asset for a $theme_machine_name theme"); + $this->output()->writeln("Building CSS asset for a $theme_machine_name theme"); $target_path = $this->drupalGetThemePath($theme_machine_name); if (empty($target_path)) {