Commit: 3dae7bb28bf3bb841420cc527cc54b2336fa6451

Author: gwoo | Date: 2010-03-08 22:37:59 -0800
Fix plugin install path in `\command\Library`.
diff --git a/libraries/lithium/console/command/Library.php b/libraries/lithium/console/command/Library.php index ebf3388..81a92e1 100644 --- a/libraries/lithium/console/command/Library.php +++ b/libraries/lithium/console/command/Library.php @@ -119,7 +119,7 @@ class Library extends \lithium\console\Command { if (file_exists($this->conf)) { $this->_settings += json_decode($this->conf, true); } - $this->path = $this->_toPath($this->path ?: 'libraries/plugins'); + $this->path = $this->_toPath($this->path ?: 'libraries'); $this->force = $this->f ? $this->f : $this->force; }