Fix return values for CLI command

This commit is contained in:
Sebastian Meyer 2024-01-04 05:25:21 +01:00
parent 8a6692513f
commit b7ddb19cfd
1 changed files with 8 additions and 1 deletions

View File

@ -51,6 +51,7 @@ class UpdateFormatsCommand extends Command
$inDatabase = Database::getInstance()->getMetadataFormats()->getQueryResult(); $inDatabase = Database::getInstance()->getMetadataFormats()->getQueryResult();
$added = 0; $added = 0;
$deleted = 0; $deleted = 0;
$failure = false;
foreach ($formats as $prefix => $format) { foreach ($formats as $prefix => $format) {
if (in_array($prefix, array_keys($inDatabase), true)) { if (in_array($prefix, array_keys($inDatabase), true)) {
if ( if (
@ -70,6 +71,7 @@ class UpdateFormatsCommand extends Command
) )
]); ]);
} catch (ValidationFailedException $exception) { } catch (ValidationFailedException $exception) {
$failure = true;
$output->writeln([ $output->writeln([
sprintf( sprintf(
' [ERROR] Could not add or update metadata format "%s". ', ' [ERROR] Could not add or update metadata format "%s". ',
@ -90,6 +92,7 @@ class UpdateFormatsCommand extends Command
) )
]); ]);
} else { } else {
$failure = true;
$output->writeln([ $output->writeln([
sprintf( sprintf(
' [ERROR] Could not delete metadata format "%s". ', ' [ERROR] Could not delete metadata format "%s". ',
@ -133,6 +136,10 @@ class UpdateFormatsCommand extends Command
1 | 16 1 | 16
); );
} }
return Command::SUCCESS; if (!$failure) {
return Command::SUCCESS;
} else {
return Command::FAILURE;
}
} }
} }