We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b380712 commit f1cbc91Copy full SHA for f1cbc91
build.gradle
@@ -98,6 +98,6 @@ tasks {
98
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
99
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
100
channels = properties("pluginVersion")
101
- .map { [(it.split('-')[1] ?: "default").split('\\.').find { true }.toLowerCase()] }
+ .map { [((it.split('-') as List)[1] ?: "default").split('\\.').find { true }.toLowerCase()] }
102
}
103
0 commit comments