File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def getChangedFiles() {
80
80
}
81
81
def sourceBranch = envSourceBranch ? " origin/${ envSourceBranch} " : " "
82
82
83
- println " Merging ${ envTargetBranch } into ${ envSourceBranch } "
83
+ println " Merging ${ sourceBranch } into ${ targetBranch } "
84
84
85
85
// Get list of all changed files including status
86
86
def systemOutStream = new ByteArrayOutputStream ()
@@ -92,6 +92,9 @@ def getChangedFiles() {
92
92
// Remove the status prefix
93
93
Pattern statusPattern = Pattern . compile(" (\\ w)\\ t+(.+)" )
94
94
List<String > files = new ArrayList<> ()
95
+
96
+ println " Changed files:"
97
+
95
98
for (file in allFiles) {
96
99
Matcher matcher = statusPattern. matcher(file)
97
100
if (matcher. find()) {
@@ -100,8 +103,6 @@ def getChangedFiles() {
100
103
}
101
104
}
102
105
103
- println " Changed Files: ${ files.count()} "
104
-
105
106
// Return the list of touched files
106
107
files
107
108
}
You can’t perform that action at this time.
0 commit comments