We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 853d324 commit 1fec3c9Copy full SHA for 1fec3c9
libraries/src/Console/UpdateCoreCommand.php
@@ -224,6 +224,13 @@ private function updateJoomlaCore($updatemodel): bool
224
$this->progressBar->advance();
225
$this->progressBar->setMessage("Cleaning up ...");
226
227
+ // Remove the administrator/cache/autoload_psr4.php file
228
+ $autoloadFile = JPATH_CACHE . '/autoload_psr4.php';
229
+
230
+ if (File::exists($autoloadFile)) {
231
+ File::delete($autoloadFile);
232
+ }
233
234
// Remove the xml
235
if (file_exists(JPATH_BASE . '/joomla.xml')) {
236
File::delete(JPATH_BASE . '/joomla.xml');
0 commit comments