Navigation Menu

Skip to content

Commit

Permalink
Renaming console/libs to console/shells so its more consistent with a…
Browse files Browse the repository at this point in the history
…pp directories.
  • Loading branch information
markstory committed Oct 17, 2010
1 parent 463eedb commit a76ce4a
Show file tree
Hide file tree
Showing 22 changed files with 10 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Expand Up @@ -38,7 +38,8 @@ public function __construct(Shell $Shell, ShellDispatcher $dispatcher) {
$this->_Dispatch = $dispatcher;
}
/**
* Loads/constructs a task. Will return the instance in the registry if it already exists.
* Loads/constructs a task. Will return the instance in the collection
* if it already exists.
*
* @param string $task Task name to load
* @param array $settings Settings for the task.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 8 additions & 2 deletions cake/libs/configure.php
Expand Up @@ -587,7 +587,11 @@ public static function build($paths = array(), $reset = false) {
'views' => array(VIEWS),
'helpers' => array(HELPERS),
'locales' => array(APP . 'locale' . DS),
'shells' => array(APP . 'vendors' . DS . 'shells' . DS, VENDORS . 'shells' . DS),
'shells' => array(
APP . 'console' . DS . 'shells' . DS,
APP . 'vendors' . DS . 'shells' . DS,
VENDORS . 'shells' . DS
),
'vendors' => array(APP . 'vendors' . DS, VENDORS),
'plugins' => array(APP . 'plugins' . DS)
);
Expand Down Expand Up @@ -690,7 +694,9 @@ public static function core($type = null) {
$paths['helpers'][] = $libs . 'view' . DS . 'helpers' . DS;
$paths['plugins'][] = $path . 'plugins' . DS;
$paths['vendors'][] = $path . 'vendors' . DS;
$paths['shells'][] = $cake . 'console' . DS . 'libs' . DS;
$paths['shells'][] = $cake . 'console' . DS . 'shells' . DS;
// Provide BC path to vendors/shells
$paths['shells'][] = $path . 'vendors' . DS . 'shells' . DS;

Cache::write('core_paths', array_filter($paths), '_cake_core_');
}
Expand Down

0 comments on commit a76ce4a

Please sign in to comment.