Manual merge for PR #108

This commit is contained in:
Andrés Montañez 2014-08-25 14:09:42 -03:00
parent c3204844ea
commit d4763da37b

View file

@ -23,6 +23,7 @@ class InstallTask extends ComposerAbstractTask
*/
public function run()
{
return $this->runCommand($this->getComposerCmd() . ' install');
$dev = $this->getParameter('dev', true);
return $this->runCommand($this->getComposerCmd() . ' install' . ($dev ? ' --dev' : ' --no-dev'));
}
}