Drop leftover exit() call

This commit is contained in:
Flavio Copes
2016-03-17 16:44:44 +01:00
parent 51c281e7df
commit 3c43888de1

View File

@@ -242,7 +242,6 @@ class InstallCommand extends ConsoleCommand
$question = new ConfirmationQuestion("The package <cyan>$package_name</cyan> will be updated to a new major version <green>$new_version</green>, from <magenta>$old_version</magenta>. Be sure to read what changed with the new major release. Continue? [y|N] ", false);
if ($helper->ask($this->input, $this->output, $question)) {
exit();
$this->processPackage($package, true);
} else {
$this->output->writeln("<yellow>Package " . $packageName . " not updated</yellow>");