From 3b89a9c3b4e57e00cc862cb98bd257f427cf3ff4 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 16 Mar 2021 20:29:57 +0100 Subject: [PATCH] Also attempt working around Vagrant filesystem issues when installing plugins initially, refs #9627 --- src/Composer/Installer/PluginInstaller.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Composer/Installer/PluginInstaller.php b/src/Composer/Installer/PluginInstaller.php index e41938816..0cbe1ab12 100644 --- a/src/Composer/Installer/PluginInstaller.php +++ b/src/Composer/Installer/PluginInstaller.php @@ -76,6 +76,7 @@ class PluginInstaller extends LibraryInstaller return $promise->then(function () use ($self, $pluginManager, $package, $repo) { try { + Platform::workaroundFilesystemIssues(); $pluginManager->registerPackage($package, true); } catch (\Exception $e) { $self->rollbackInstall($e, $repo, $package);