Skip to content

Commit

Permalink
Merge pull request #3486 from dereuromark/3.0-bake
Browse files Browse the repository at this point in the history
3.0 bake
  • Loading branch information
markstory committed May 14, 2014
2 parents a406d9d + ff12a56 commit 793e97a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/Command/BakeShell.php
Expand Up @@ -77,13 +77,13 @@ public function main() {
$this->out(__d('cake_console', 'Add your database connection information to App/Config/app.php.'));
return false;
}
$this->out(__d('cake_console', 'The following commands you can generate skeleton code your your application.'));
$this->out(__d('cake_console', 'The following commands can be used to generate skeleton code for your application.'));
$this->out('');
$this->out(__d('cake_console', '<info>Available bake commands:</info>'));
$this->out('');
foreach ($this->tasks as $task) {
list($p, $name) = pluginSplit($task);
$this->out(Inflector::underscore($name));
$this->out('- ' . Inflector::underscore($name));
}
$this->out('');
$this->out(__d('cake_console', 'By using <info>Console/cake bake [name]</info> you can invoke a specific bake task.'));
Expand Down

0 comments on commit 793e97a

Please sign in to comment.