File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
projectguard/src/main/kotlin/com/rubensousa/projectguard/plugin/internal/task Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -113,8 +113,9 @@ internal class CheckExecutor(
113113 htmlReportGenerator.generate(report, reportDir)
114114 if (fatalMatches.isNotEmpty()) {
115115 throw VerificationException (
116- " ${fatalMatches.take(10 ).joinToString(" \n\n " ) { it.getDescription() }} \n " +
117- " Found ${fatalMatches.size} fatal match(es). See full report at file:///$reportFilePath "
116+ " ${fatalMatches.take(10 ).joinToString(" \n\n " ) { it.getDescription() }} \n\n " +
117+ " Found ${fatalMatches.size} fatal match(es). See full report at file:///$reportFilePath \n\n " +
118+ " Consider updating the baseline with the task projectGuardBaseline if these matches are acceptable."
118119 )
119120 } else {
120121 println (" No fatal matches found. See report at file:///$reportFilePath " )
You can’t perform that action at this time.
0 commit comments