We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0add624 commit 6b7671eCopy full SHA for 6b7671e
gradle-tasks/staticChecks.gradle
@@ -53,8 +53,6 @@ task checkstyle(type: Checkstyle) {
53
54
// Execute Checkstyle on all modified files
55
task checkstyleCI(type: Checkstyle) {
56
- logging.captureStandardOutput LogLevel.DEBUG
57
-
58
def changedFiles = getChangedFiles()
59
include changedFiles
60
}
@@ -97,10 +95,13 @@ def getChangedFiles() {
97
95
for (file in allFiles) {
98
96
Matcher matcher = statusPattern.matcher(file)
99
if (matcher.find()) {
+ println "+ ${matcher.group(2)}"
100
files.add(matcher.group(2))
101
102
103
+ println "Changed Files: ${files.count()}"
104
+
105
// Return the list of touched files
106
files
107
0 commit comments