From bad819773eac1dd47ac5d3708dc64f185270b15b Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 19 Oct 2011 21:26:04 -0400 Subject: [PATCH] Update CommandListShell to give better help. plugins require plugin prefixes now. Update the help to suggest how to run plugin shells. Fixes #2121 --- lib/Cake/Console/Command/CommandListShell.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Cake/Console/Command/CommandListShell.php b/lib/Cake/Console/Command/CommandListShell.php index ff73c96b2..4bf5b9356 100644 --- a/lib/Cake/Console/Command/CommandListShell.php +++ b/lib/Cake/Console/Command/CommandListShell.php @@ -144,7 +144,8 @@ class CommandListShell extends Shell { $this->out(" " . $row); } $this->out(); - $this->out(__d('cake_console', "To run a command, type cake shell_name [args]")); + $this->out(__d('cake_console', "To run an app or core command, type cake shell_name [args]")); + $this->out(__d('cake_console', "To run a plugin command, type cake Plugin.shell_name [args]")); $this->out(__d('cake_console', "To get help on a specific command, type cake shell_name --help"), 2); }