Fix for lowercased schema folder when baking plugin skel

This commit is contained in:
Majna 2011-07-28 18:57:10 +02:00
parent 25682db434
commit 29e4cad99e
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ class PluginTask extends Shell {
if (strtolower($looksGood) == 'y') {
$Folder = new Folder($this->path . $plugin);
$directories = array(
'Config' . DS . 'schema',
'Config' . DS . 'Schema',
'Model' . DS . 'Behavior',
'Model' . DS . 'Datasource',
'Console' . DS . 'Command' . DS . 'Task',

View file

@ -86,7 +86,7 @@ class PluginTaskTest extends CakeTestCase {
$this->assertTrue(is_dir($path), 'No plugin dir %s');
$directories = array(
'Config' . DS . 'schema',
'Config' . DS . 'Schema',
'Model' . DS . 'Behavior',
'Model' . DS . 'Datasource',
'Console' . DS . 'Command' . DS . 'Task',