Skip to content

Commit 0cb3040

Browse files
author
Roman Glushko
committed
magento#184 Fixed issue with unknown method
1 parent 6b7671e commit 0cb3040

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

gradle-tasks/staticChecks.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def getChangedFiles() {
8080
}
8181
def sourceBranch = envSourceBranch ? "origin/${envSourceBranch}" : ""
8282

83-
println "Merging ${envTargetBranch} into ${envSourceBranch}"
83+
println "Merging ${sourceBranch} into ${targetBranch}"
8484

8585
// Get list of all changed files including status
8686
def systemOutStream = new ByteArrayOutputStream()
@@ -92,6 +92,9 @@ def getChangedFiles() {
9292
// Remove the status prefix
9393
Pattern statusPattern = Pattern.compile("(\\w)\\t+(.+)")
9494
List<String> files = new ArrayList<>()
95+
96+
println "Changed files:"
97+
9598
for (file in allFiles) {
9699
Matcher matcher = statusPattern.matcher(file)
97100
if (matcher.find()) {
@@ -100,8 +103,6 @@ def getChangedFiles() {
100103
}
101104
}
102105

103-
println "Changed Files: ${files.count()}"
104-
105106
// Return the list of touched files
106107
files
107108
}

0 commit comments

Comments
 (0)