Skip to content

Commit 9c00b39

Browse files
committed
null
1 parent b81f6d9 commit 9c00b39

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

components/ide/jetbrains/gateway-plugin/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,10 @@ intellijPlatform {
105105

106106
ideaVersion {
107107
sinceBuild = properties("pluginSinceBuild")
108-
if (!properties("pluginUntilBuild").isNullOrBlank()) {
109-
untilBuild = properties("pluginUntilBuild")
108+
untilBuild = if (!properties("pluginUntilBuild").isNullOrBlank()) {
109+
properties("pluginUntilBuild")
110+
} else {
111+
providers { null }
110112
}
111113
}
112114
}

0 commit comments

Comments
 (0)