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
parent
f5ffedfe60
commit
483eac1c2f
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue