setMessage($this->translator->trans('mautic.core.update.step.wrapping_up')); $progressBar->advance(); // Clear the cached update data and the download package now that we've updated @unlink($this->pathsHelper->getRootPath().'/upgrade.php'); @unlink($this->pathsHelper->getCachePath().'/lastUpdateCheck.txt'); // Update successful $progressBar->setMessage( $this->translator->trans('mautic.core.update.update_successful', ['%version%' => $this->appVersion->getVersion()])."\n\n" ); $progressBar->finish(); // Check for a post install message from migrations if ($postMessage = $this->session->get('post_upgrade_message')) { $postMessage = strip_tags($postMessage); $this->session->remove('post_upgrade_message'); $output->writeln("\n\n$postMessage"); } } }