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.
main
Helmut Hummel 2 years ago committed by GitHub
parent f5ffedfe60
commit 483eac1c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save