mirror of
https://github.com/composer/composer
synced 2025-05-10 17:12:51 +00:00
added a indicator in the info-message on --optimize
This commit is contained in:
parent
99f5b5a238
commit
464fa1dedb
1 changed files with 5 additions and 1 deletions
|
@ -41,7 +41,11 @@ EOT
|
|||
|
||||
protected function execute(InputInterface $input, OutputInterface $output)
|
||||
{
|
||||
$output->writeln('<info>Generating autoload files</info>');
|
||||
if ($input->getOption('optimize')) {
|
||||
$output->writeln('<info>Generating optimized autoload files</info>');
|
||||
} else {
|
||||
$output->writeln('<info>Generating autoload files</info>');
|
||||
}
|
||||
|
||||
$composer = $this->getComposer();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue