From 6ea8de6260e349e39ee58da231fe9c5a6fe032a8 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Wed, 13 Nov 2024 07:51:01 -0300 Subject: [PATCH] feat: write success after end of configure When finish execution of configure command, write success. Signed-off-by: Vitor Mattos --- lib/Command/Install.php | 1 + lib/Command/Uninstall.php | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/Command/Install.php b/lib/Command/Install.php index c6f9182917..bd233f8302 100644 --- a/lib/Command/Install.php +++ b/lib/Command/Install.php @@ -140,6 +140,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 b789d55f26..767fc3af7d 100644 --- a/lib/Command/Uninstall.php +++ b/lib/Command/Uninstall.php @@ -91,6 +91,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; } }