Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CoreUpdater/Model.php')
-rw-r--r--plugins/CoreUpdater/Model.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/CoreUpdater/Model.php b/plugins/CoreUpdater/Model.php
index e03015e1b3..fa0ab59785 100644
--- a/plugins/CoreUpdater/Model.php
+++ b/plugins/CoreUpdater/Model.php
@@ -26,6 +26,8 @@ class Model
public function removeGoneFiles($source, $target)
{
Filesystem::unlinkTargetFilesNotPresentInSource($source . '/core', $target . '/core');
+ Filesystem::unlinkTargetFilesNotPresentInSource($source . '/libs', $target . '/libs');
+ Filesystem::unlinkTargetFilesNotPresentInSource($source . '/vendor', $target . '/vendor');
foreach ($this->getPluginsFromDirectoy($source) as $pluginDir) {
Filesystem::unlinkTargetFilesNotPresentInSource($source . $pluginDir, $target . $pluginDir);