Skip to content

Commit

Permalink
Fix more double formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 14, 2016
1 parent 8203e4c commit a9f544d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Shell/Task/LoadTask.php
Expand Up @@ -41,8 +41,8 @@ public function main($plugin = null)
$this->bootstrap = ROOT . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'bootstrap.php';

if (empty($plugin)) {
$this->err('<error>You must provide a plugin name in CamelCase format.</error>');
$this->err('To load an "Example" plugin, run <info>`cake plugin load Example`</info>.');
$this->err('You must provide a plugin name in CamelCase format.');
$this->err('To load an "Example" plugin, run `cake plugin load Example`.');

return false;
}
Expand Down
4 changes: 2 additions & 2 deletions src/Shell/Task/UnloadTask.php
Expand Up @@ -41,8 +41,8 @@ public function main($plugin = null)
$this->bootstrap = ROOT . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'bootstrap.php';

if (empty($plugin)) {
$this->err('<error>You must provide a plugin name in CamelCase format.</error>');
$this->err('To unload an "Example" plugin, run <info>`cake plugin unload Example`</info>.');
$this->err('You must provide a plugin name in CamelCase format.');
$this->err('To unload an "Example" plugin, run `cake plugin unload Example`.');

return false;
}
Expand Down

0 comments on commit a9f544d

Please sign in to comment.