diff --git a/src/Command/CreateCommand.php b/src/Command/CreateCommand.php index 9ea4d97..8f91ad0 100644 --- a/src/Command/CreateCommand.php +++ b/src/Command/CreateCommand.php @@ -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)");