diff --git a/lib/Command/Install.php b/lib/Command/Install.php index 0e5f7816e4..e2503f4f47 100644 --- a/lib/Command/Install.php +++ b/lib/Command/Install.php @@ -156,6 +156,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $output->writeln('--help to check the available options'); return 1; } + $output->writeln('Finished with success.'); return 0; } diff --git a/lib/Command/Uninstall.php b/lib/Command/Uninstall.php index fc65c68f85..0978ff11dd 100644 --- a/lib/Command/Uninstall.php +++ b/lib/Command/Uninstall.php @@ -107,6 +107,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $output->writeln('--help to check the available options'); return 1; } + $output->writeln('Finished with success.'); return 0; } }