Skip to content

Commit 3d7b6e3

Browse files
committed
[FrameworkBundle] Fix block type from OK to ERROR when local vault is disabled in SecretsRemoveCommand
1 parent ca103a5 commit 3d7b6e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/SecretsRemoveCommand.php

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

6565
if (null === $vault) {
66-
$io->success('The local vault is disabled.');
66+
$io->error('The local vault is disabled.');
6767

6868
return 1;
6969
}

0 commit comments

Comments
 (0)