Skip to content

Commit

Permalink
add non null asserted call (!!) for the type mismatch 'any' and 'Stri…
Browse files Browse the repository at this point in the history
…ng?' in engine build.gradle.kts
  • Loading branch information
soloturn committed Dec 24, 2023
1 parent 6d11b29 commit 03435fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ println("Scanning for version in module.txt for engine")
val moduleConfig = groovy.json.JsonSlurper().parseText(moduleFile.readText()) as Map<String, String>

// Gradle uses the magic version variable when creating the jar name (unless explicitly set differently)
version = moduleConfig["version"]
version = moduleConfig["version"]!!

// Jenkins-Artifactory integration catches on to this as part of the Maven-type descriptor
group = "org.terasology.engine"
Expand Down

0 comments on commit 03435fb

Please sign in to comment.