Handle win2019 gcc issue

This commit is contained in:
MSP-Greg
2025-05-01 10:48:55 +02:00
committed by Benoit Daloze
parent f41e084df8
commit eaecf785f6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ export async function install(platform, engine, version) {
// windows 2016 and 2019 need ucrt64 installed, 2022 and future images need
// ucrt64 or mingw64 installed, depending on Ruby version
if (((msys2Type === 'ucrt64') || !hasMSYS2PreInstalled) && common.floatVersion(version) >= 2.4) {
if ((msys2Type === 'ucrt64') || (common.floatVersion(version) >= 2.4)) {
await installGCCTools(msys2Type, version)
}