We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 518b103 commit e26ed44Copy full SHA for e26ed44
src/main/groovy/com/netflix/nebula/lint/plugin/GradleLintTask.groovy
@@ -65,7 +65,7 @@ class GradleLintTask extends DefaultTask {
65
.println("\u2716 ${buildFilePath}: ${violations.size()} problem${violations.isEmpty() ? '' : 's'} (${totalBySeverity.error ?: 0} errors, ${totalBySeverity.warning ?: 0} warnings)\n".toString())
66
67
textOutput.text("To apply auto-fixes, run ").withStyle(StyledTextOutput.Style.UserInput).text("fixGradleLint")
68
- textOutput.text(", review, and commit the changes.")
+ textOutput.println(", review, and commit the changes.")
69
70
if (totalBySeverity.error)
71
throw new LintCheckFailedException() // fail the whole build
0 commit comments