Skip to content

Commit

Permalink
fix: fix wrong building property for bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
duruer committed Feb 23, 2024
1 parent ff6d502 commit cfa2d61
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 @@ -13,7 +13,7 @@ val pf4jVersion: String by project
val vertxVersion: String by project
val gsonVersion: String by project
val handlebarsVersion: String by project
val bootstrap = project.findProject("bootstrap") as Boolean? ?: false
val bootstrap = (project.findProperty("bootstrap") as String?)?.toBoolean() ?: false
val pluginsDir: File? by rootProject.extra

repositories {
Expand Down

0 comments on commit cfa2d61

Please sign in to comment.