diff --git a/src/NewCommand.php b/src/NewCommand.php index b74d0f8f..aeb372fd 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -90,7 +90,9 @@ protected function execute(InputInterface $input, OutputInterface $output) $output->write($line); }); - $output->writeln('Application ready! Build something amazing.'); + if ($process->isSuccessful()) { + $output->writeln('Application ready! Build something amazing.'); + } } /**