mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Fix output formatting
This commit is contained in:
parent
f15b9c258e
commit
29ec10d95c
2 changed files with 2 additions and 2 deletions
|
@ -237,7 +237,7 @@ EOT
|
|||
$flags .= ' --with-dependencies';
|
||||
}
|
||||
|
||||
$io->writeError('<info>Running composer update '.implode(' ', $packages).$flags);
|
||||
$io->writeError('<info>Running composer update '.implode(' ', $packages).$flags.'</info>');
|
||||
|
||||
$ignorePlatformReqs = $input->getOption('ignore-platform-reqs') ?: ($input->getOption('ignore-platform-req') ?: false);
|
||||
|
||||
|
|
|
@ -281,7 +281,7 @@ EOT
|
|||
$flags .= ' --with-dependencies';
|
||||
}
|
||||
|
||||
$io->writeError('<info>Running composer update '.implode(' ', array_keys($requirements)).$flags);
|
||||
$io->writeError('<info>Running composer update '.implode(' ', array_keys($requirements)).$flags.'</info>');
|
||||
|
||||
$commandEvent = new CommandEvent(PluginEvents::COMMAND, 'require', $input, $output);
|
||||
$composer->getEventDispatcher()->dispatch($commandEvent->getName(), $commandEvent);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue