From 8427b6c8ed335a09a7b03e8ee45bd12c788135ad Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 20 May 2021 13:27:15 +0200 Subject: [PATCH] Also make sure filesystem is up to date before generating binary links, refs #9627 --- src/Composer/Installer/BinaryInstaller.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Composer/Installer/BinaryInstaller.php b/src/Composer/Installer/BinaryInstaller.php index 47022ff42..259c43db1 100644 --- a/src/Composer/Installer/BinaryInstaller.php +++ b/src/Composer/Installer/BinaryInstaller.php @@ -53,6 +53,9 @@ class BinaryInstaller if (!$binaries) { return; } + + Platform::workaroundFilesystemIssues(); + foreach ($binaries as $bin) { $binPath = $installPath.'/'.$bin; if (!file_exists($binPath)) {