Skip to content

Commit 366903a

Browse files
committed
[FrameworkBundle] Fix block type from OK to ERROR when local vault is disabled in SecretsGenerateKeysCommand
1 parent 16e276d commit 366903a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/SecretsGenerateKeysCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
6767
$vault = $input->getOption('local') ? $this->localVault : $this->vault;
6868

6969
if (null === $vault) {
70-
$io->success('The local vault is disabled.');
70+
$io->error('The local vault is disabled.');
7171

7272
return 1;
7373
}

0 commit comments

Comments
 (0)