Making the cake --help shortcut pass along the other options.

This commit is contained in:
mark_story 2010-10-26 22:40:11 -04:00
parent 558bd7e3c2
commit efac10d3de

View file

@ -311,7 +311,7 @@ class ShellDispatcher {
* *
*/ */
public function help() { public function help() {
$this->args = array('command_list'); $this->args = array_merge(array('command_list'), $this->args);
$this->dispatch(); $this->dispatch();
} }