Skip to content

Commit f6d9524

Browse files
committed
Fix an error message
1 parent 55b8b9f commit f6d9524

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/src/main/groovy/org/stoyicker/androidcheck/CommonCheck.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ abstract class CommonCheck<Config extends CommonConfig> {
8282
if(target.tasks.find({ it.name == 'check'}) != null) {
8383
target.tasks.getByName('check').dependsOn taskName
8484
} else {
85-
target.logger.warn """task check not found in project $target.name. You may need to run
86-
the plugin tasks manually"""
85+
target.logger.warn
86+
"task check not found in project $target.name. You may need to run the plugin tasks manually"
8787
}
8888
dependencies.each { target.tasks.getByName(taskName).dependsOn it }
8989
}

0 commit comments

Comments
 (0)