IDEA-344208 Make the MyIconClassFileChecker failure message more clear

GitOrigin-RevId: d9fcbe7394a5e489dc1f74998a1e1dfad201168f
This commit is contained in:
Aydar Mukhametzyanov
2024-03-19 09:05:32 +01:00
committed by intellij-monorepo-bot
parent 9adae2affe
commit 6a36c88b3f

View File

@@ -227,7 +227,9 @@ private class MyIconClassFileChecker(private val projectHome: Path, private val
generator.getModifiedClasses().forEach { (module, file, details) ->
failures.add(FailedTest(module, "icon class file should be regenerated using " +
"\"Icons processing | Generate icon classes\" run configuration, " +
"or new icons be ignored via 'icon-robots.txt'", file, details))
"or make these files ignored by adding them into 'icon-robots.txt' file. " +
"You can create the new file or add the icons into the existing one if it has already been there. " +
"Please, search for 'icon-robots.txt' examples in the project to know the format.", file, details))
}
}
}