Fix for composer --no-dev

This commit is contained in:
David Bomba 2020-09-08 07:01:53 +10:00
parent 94a7840fdb
commit a384db6ee8

View File

@ -65,7 +65,7 @@ class PostUpdate extends Command
putenv('COMPOSER_HOME=' . __DIR__ . '/vendor/bin/composer');
$input = new ArrayInput(array('command' => 'install'));
$input = new ArrayInput(array('command' => 'install', '--no-dev' => 'true'));
$application = new Application();
$application->setAutoExit(false);
$application->run($input);