Skip to content

Commit

Permalink
Fix NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Jul 27, 2024
1 parent 655ff78 commit c16cf74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ class KordExPlugin : Plugin<Project> {
doLast {
val properties = Properties()

properties.setProperty("settings.dataCollection", extension.dataCollection.orNull?.readable)
properties.setProperty("settings.dataCollection", extension.dataCollection.orNull?.readable.toString())
properties.setProperty("modules", extension.modules.get().joinToString())
properties.setProperty("versions.kordEx", kordExVersion.version)
properties.setProperty("versions.kord", kordVersion?.version)
Expand Down

0 comments on commit c16cf74

Please sign in to comment.