Adding Shel::$command back in as it was still being used, oops.

Updating Bakeshell to do its tricks at the correct time.
This commit is contained in:
mark_story 2010-10-17 22:37:57 -04:00
parent 561067e797
commit 8f0a96d4bb
2 changed files with 10 additions and 3 deletions

View file

@ -43,8 +43,8 @@ class BakeShell extends Shell {
* Override loadTasks() to handle paths
*
*/
public function loadTasks() {
parent::loadTasks();
public function startup() {
parent::startup();
$task = Inflector::classify($this->command);
if (isset($this->{$task}) && !in_array($task, array('Project', 'DbConfig'))) {
if (isset($this->params['connection'])) {
@ -188,7 +188,7 @@ class BakeShell extends Shell {
$this->out(__('Bake All complete'));
array_shift($this->args);
} else {
$this->err(__('Bake All could not continue without a valid model'));
$this->error(__('Bake All could not continue without a valid model'));
}
$this->_stop();
}

View file

@ -68,6 +68,13 @@ class Shell extends Object {
*/
public $params = array();
/**
* The command (method/task) that is being run.
*
* @var string
*/
public $command;
/**
* Contains arguments parsed from the command line.
*