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;
}
}