Skip to content

Commit

Permalink
fix: Fix coverage report badge
Browse files Browse the repository at this point in the history
Signed-off-by: starry-shivam <[email protected]>
  • Loading branch information
starry-shivam committed Aug 16, 2024
1 parent d9737c3 commit f9ffac2
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 @@ -90,7 +90,7 @@ tasks.register("printLineCoverage") {
group = "verification"
dependsOn("koverXmlReport")
doLast {
val report = file("${layout.buildDirectory}/reports/kover/report.xml")
val report = file("${layout.buildDirectory.get()}/reports/kover/report.xml")
val doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(report)
val rootNode = doc.firstChild
var childNode = rootNode.firstChild
Expand Down

0 comments on commit f9ffac2

Please sign in to comment.