Don't install require-dev packages. (#5549)

This is already set for a local composer install, but not a global
one. They should be consistent.
This commit is contained in:
Tim Bishop 2018-05-19 00:06:05 +01:00 committed by snipe
parent abbb94239d
commit fa0c58e42a

View file

@ -111,7 +111,7 @@ if (file_exists('composer.phar')) {
} else {
echo "-- We couldn't find a local composer.phar - trying globally.\n\n";
$composer_dump = shell_exec('composer dump');
$composer = shell_exec('composer install --prefer-source');
$composer = shell_exec('composer install --no-dev --prefer-source');
}
echo $composer_dump."\n\n";