From 483eac1c2ff8b57944e12a5c3d305eac6f319a2b Mon Sep 17 00:00:00 2001 From: Helmut Hummel Date: Fri, 3 Dec 2021 11:16:58 +0100 Subject: [PATCH] Install full binaries on Windows by default (#10327) A bug was introduced in #10137 that leads to the situation that by default .bat binaries are not installed on Windows any more. Check the correct variable to install .bat files on Windows by default again. --- src/Composer/Installer/BinaryInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Installer/BinaryInstaller.php b/src/Composer/Installer/BinaryInstaller.php index ff29c1b3e..d0997ea4c 100644 --- a/src/Composer/Installer/BinaryInstaller.php +++ b/src/Composer/Installer/BinaryInstaller.php @@ -103,7 +103,7 @@ class BinaryInstaller $binCompat = 'full'; } - if ($this->binCompat === "full") { + if ($binCompat === "full") { $this->installFullBinaries($binPath, $link, $bin, $package); } else { $this->installUnixyProxyBinaries($binPath, $link);