Skip to content

Commit 07ca001

Browse files
committed
Fix Gateway 2025.3 to use zip distribution instead of installer
1 parent 71bcd31 commit 07ca001

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

buildSrc/src/main/kotlin/toolkit-intellij-subplugin.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,12 @@ dependencies {
9595

9696
create(type, version, useInstaller = false)
9797
} else {
98-
create(IntelliJPlatformType.Gateway, version)
98+
val gatewayVersion = version.get()
99+
if (gatewayVersion.startsWith("253")) {
100+
create(IntelliJPlatformType.Gateway, version, useInstaller = false)
101+
} else {
102+
create(IntelliJPlatformType.Gateway, version)
103+
}
99104
}
100105

101106
bundledPlugins(toolkitIntelliJ.productProfile().map { it.bundledPlugins })

0 commit comments

Comments
 (0)