Skip to content

Commit

Permalink
Merge pull request #47 from orangain/fix-channel-selector
Browse files Browse the repository at this point in the history
Fix channel selector
  • Loading branch information
orangain authored Jul 18, 2024
2 parents 234693a + 0aeb5e1 commit fecce68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ tasks {
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
channels = properties("pluginVersion").map {
listOf(
it.substringAfter('-').substringBefore('.').ifEmpty { "default" })
it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" })
}
}
}

0 comments on commit fecce68

Please sign in to comment.