Skip to content

Commit e5ae718

Browse files
authored
Merge pull request #102 from JayBizzle/patch-1
Check installation was successful
2 parents dec185d + 13bc9ce commit e5ae718

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/NewCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
9090
$output->write($line);
9191
});
9292

93-
$output->writeln('<comment>Application ready! Build something amazing.</comment>');
93+
if ($process->isSuccessful()) {
94+
$output->writeln('<comment>Application ready! Build something amazing.</comment>');
95+
}
9496
}
9597

9698
/**

0 commit comments

Comments
 (0)