Compare commits

...
1 Commits
Author SHA1 Message Date
MSP-Greg eaecf785f6 Handle win2019 gcc issue 2025-05-01 10:48:55 +02:00
2 changed files with 2 additions and 2 deletions
Generated Vendored
+1 -1
View File
@@ -74352,7 +74352,7 @@ 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)
}
+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)
}