Fixing issue where schema create would always dry run.

This commit is contained in:
mark_story 2010-10-16 01:46:47 -04:00
parent cf98942c72
commit 09ee1b7dce

View file

@ -269,7 +269,7 @@ class SchemaShell extends Shell {
$plugin = $this->params['plugin']; $plugin = $this->params['plugin'];
} }
if (isset($this->params['dry'])) { if ($this->params['dry']) {
$this->__dry = true; $this->__dry = true;
$this->out(__('Performing a dry run.')); $this->out(__('Performing a dry run.'));
} }