1
0
Fork 0

Update code to latest EventDispatcher, refs #2722

pull/2800/merge
Jordi Boggiano 2014-03-23 23:05:03 +01:00
parent b9efdd8348
commit e221757197
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ EOT
if (in_array($script, $this->commandEvents)) {
$this->getComposer()->getEventDispatcher()->dispatchCommandEvent($script, $input->getOption('dev') || !$input->getOption('no-dev'));
} else {
$this->getComposer()->getEventDispatcher()->dispatchScript($script);
$this->getComposer()->getEventDispatcher()->dispatchScript($script, $input->getOption('dev') || !$input->getOption('no-dev'));
}
}
}