1
0
Fork 0

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.
pull/10331/head
Helmut Hummel 2021-12-03 11:16:58 +01:00 committed by GitHub
parent f5ffedfe60
commit 483eac1c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class BinaryInstaller
$binCompat = 'full'; $binCompat = 'full';
} }
if ($this->binCompat === "full") { if ($binCompat === "full") {
$this->installFullBinaries($binPath, $link, $bin, $package); $this->installFullBinaries($binPath, $link, $bin, $package);
} else { } else {
$this->installUnixyProxyBinaries($binPath, $link); $this->installUnixyProxyBinaries($binPath, $link);