From 21904f3f5b9616d6fcda146af2689fd6aa521338 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 0e5f7816e..e2503f4f4 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 fc65c68f8..0978ff11d 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; } }