Skip to content

Commit

Permalink
Fix bug in IJ version configuration (added by me)
Browse files Browse the repository at this point in the history
  • Loading branch information
rock3r committed Oct 20, 2023
1 parent 898ae44 commit 091cd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/IdeaConfiguration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ private var warned = AtomicBoolean(false)

fun Project.supportedIJVersion(): SupportedIJVersion {
val prop = kotlin.runCatching {
rootProject.property("supported.ij.version")?.toString() ?:
rootProject.findProperty("supported.ij.version")?.toString() ?:
localProperty("supported.ij.version")
}.getOrNull()

Expand Down

0 comments on commit 091cd50

Please sign in to comment.