We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3ff3a0 commit 64eb602Copy full SHA for 64eb602
src/Composer/InstallerScript/ConsoleCommand.php
@@ -85,11 +85,11 @@ public function run(Event $event): bool
85
if (!$this->allowFailure) {
86
throw $e;
87
}
88
- if (!$this->allowFailure || $io->getOutput()->isVerbose()) {
+ if ($io->getOutput()->isVerbose()) {
89
(new ExceptionRenderer())->render($e, $io->getOutput());
90
} else {
91
$messages[] = sprintf(
92
- '<error>Executing TYPO3 Console command "%s" failed.</error>',
+ '<warning>Executing TYPO3 Console command "%s" failed.</warning>',
93
$e->getCommand()
94
);
95
if (self::$verbosityHint) {
0 commit comments