From 9533a3145ae2eee879eefeb84b9bf29a12813f01 Mon Sep 17 00:00:00 2001 From: Anton Medvedev Date: Mon, 3 Jul 2017 13:55:29 +0700 Subject: [PATCH] Fix bug with wrong version --- src/Console/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Command.php b/src/Console/Command.php index b728de7..44dbf0b 100644 --- a/src/Console/Command.php +++ b/src/Console/Command.php @@ -100,7 +100,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $this->disableUpgrade ?: (false === $input->getOption('upgrade')), $input->getOption('pre') )){ - $output->writeln('Update successful to version ' . $this->getApplication()->getVersion() . '!'); + $output->writeln('Update successful!'); } else { $output->writeln('Already up-to-date.'); }