mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
the correct argument for plugins is infact "plugins"
This commit is contained in:
parent
56c6e35437
commit
a199e72610
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ class PluginTask extends Shell {
|
|||
* @return void
|
||||
*/
|
||||
function initialize() {
|
||||
$this->path = current(App::path('Plugin'));
|
||||
$this->path = current(App::path('plugins'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -94,7 +94,7 @@ class PluginTask extends Shell {
|
|||
$this->findPath($pathOptions);
|
||||
}
|
||||
$this->hr();
|
||||
$this->out(__d('cake_console', "<info>Plugin Name:</info> %s", $plugin));
|
||||
$this->out(__d('cake_console', "<info>Plugin Name:</info> %s", $plugin));
|
||||
$this->out(__d('cake_console', "<info>Plugin Directory:</info> %s", $this->path . $pluginPath));
|
||||
$this->hr();
|
||||
|
||||
|
|
Loading…
Reference in a new issue