Skip to content

Commit

Permalink
Merge branch 'master' into dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
g105b authored Dec 31, 2023
2 parents 28d1e06 + eccb02c commit 1ef9677
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Command/CreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ public function run(ArgumentValueList $arguments = null):void {
}
while($process->isRunning());

if($code = $process->getExitCode()) {
$this->writeLine("There was an error installing the blueprint (exit code $code)");
exit($code);
}

$this->writeLine();
$this->writeLine("Your new application is created!");
$this->writeLine("Would you like to run it now? (Y/N)");
Expand Down

0 comments on commit 1ef9677

Please sign in to comment.