From d461fac0890cb10df72c15b31037858cb7c2e8aa Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Sun, 26 Apr 2015 17:20:52 -0600 Subject: [PATCH] optimize install of vendor libs --- system/src/Grav/Console/Cli/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Console/Cli/InstallCommand.php b/system/src/Grav/Console/Cli/InstallCommand.php index f0510a51f..a8c98f370 100644 --- a/system/src/Grav/Console/Cli/InstallCommand.php +++ b/system/src/Grav/Console/Cli/InstallCommand.php @@ -98,7 +98,7 @@ class InstallCommand extends Command if (!$input->getOption('symlink')) { // Updates composer first $output->writeln("\nInstalling vendor dependencies"); - $output->writeln(system('php bin/composer.phar --working-dir="'.$this->destination.'" --no-interaction update')); + $output->writeln(system('php bin/composer.phar --working-dir="'.$this->destination.'" --no-interaction --no-dev -o install')); $this->gitclone($output); } else {