Closed bakjoul closed 10 months ago
Hi, try to rewrite this code
tasks.named("koverHtmlReport${variantName}").configure {
doLast {
openReport htmlOutDir
}
}
like this
tasks.matching { it.name == "koverHtmlReport${variantName}"}.configureEach {
doLast {
openReport htmlOutDir
}
}
Hi, try to rewrite this code
tasks.named("koverHtmlReport${variantName}").configure { doLast { openReport htmlOutDir } }
like this
tasks.matching { it.name == "koverHtmlReport${variantName}"}.configureEach { doLast { openReport htmlOutDir } }
Your solution works. Thank you very much !
Hello,
On version, 0.7.0, i used to do this to automatically open the generated report :
It also works on 0.7.1, but from 0.7.2, it doesn't work anymore. I get the following error (and i don't get why) :