From 3c43888de13e06e080bc5a6c2f65cd7e503847ea Mon Sep 17 00:00:00 2001 From: Flavio Copes Date: Thu, 17 Mar 2016 16:44:44 +0100 Subject: [PATCH] Drop leftover exit() call --- system/src/Grav/Console/Gpm/InstallCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/system/src/Grav/Console/Gpm/InstallCommand.php b/system/src/Grav/Console/Gpm/InstallCommand.php index 262cbc6a3..8f34a6a49 100644 --- a/system/src/Grav/Console/Gpm/InstallCommand.php +++ b/system/src/Grav/Console/Gpm/InstallCommand.php @@ -242,7 +242,6 @@ class InstallCommand extends ConsoleCommand $question = new ConfirmationQuestion("The package $package_name will be updated to a new major version $new_version, from $old_version. 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("Package " . $packageName . " not updated");