Skip to content

Commit e26ed44

Browse files
committed
Add newline after recommendation to run auto-fix task
1 parent 518b103 commit e26ed44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/com/netflix/nebula/lint/plugin/GradleLintTask.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class GradleLintTask extends DefaultTask {
6565
.println("\u2716 ${buildFilePath}: ${violations.size()} problem${violations.isEmpty() ? '' : 's'} (${totalBySeverity.error ?: 0} errors, ${totalBySeverity.warning ?: 0} warnings)\n".toString())
6666

6767
textOutput.text("To apply auto-fixes, run ").withStyle(StyledTextOutput.Style.UserInput).text("fixGradleLint")
68-
textOutput.text(", review, and commit the changes.")
68+
textOutput.println(", review, and commit the changes.")
6969

7070
if (totalBySeverity.error)
7171
throw new LintCheckFailedException() // fail the whole build

0 commit comments

Comments
 (0)