We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b81f6d9 commit 9c00b39Copy full SHA for 9c00b39
components/ide/jetbrains/gateway-plugin/build.gradle.kts
@@ -105,8 +105,10 @@ intellijPlatform {
105
106
ideaVersion {
107
sinceBuild = properties("pluginSinceBuild")
108
- if (!properties("pluginUntilBuild").isNullOrBlank()) {
109
- untilBuild = properties("pluginUntilBuild")
+ untilBuild = if (!properties("pluginUntilBuild").isNullOrBlank()) {
+ properties("pluginUntilBuild")
110
+ } else {
111
+ providers { null }
112
}
113
114
0 commit comments