We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55b8b9f commit f6d9524Copy full SHA for f6d9524
plugin/src/main/groovy/org/stoyicker/androidcheck/CommonCheck.groovy
@@ -82,8 +82,8 @@ abstract class CommonCheck<Config extends CommonConfig> {
82
if(target.tasks.find({ it.name == 'check'}) != null) {
83
target.tasks.getByName('check').dependsOn taskName
84
} else {
85
- target.logger.warn """task check not found in project $target.name. You may need to run
86
- the plugin tasks manually"""
+ target.logger.warn
+ "task check not found in project $target.name. You may need to run the plugin tasks manually"
87
}
88
dependencies.each { target.tasks.getByName(taskName).dependsOn it }
89
0 commit comments