diff --git a/src/Console/VendorExposeCommand.php b/src/Console/VendorExposeCommand.php index d198557..e55082d 100644 --- a/src/Console/VendorExposeCommand.php +++ b/src/Console/VendorExposeCommand.php @@ -41,7 +41,7 @@ public function execute(InputInterface $input, OutputInterface $output) $modules = $this->getAllLibraries(); if (empty($modules)) { $io->write("No modules to expose"); - return; + return 0; } // Query first library for base destination @@ -55,6 +55,8 @@ public function execute(InputInterface $input, OutputInterface $output) // Success $io->write("All modules updated!"); } + + return 0; } /**