cob-cli 2.43.2 → 2.43.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -176,6 +176,12 @@ function copyAndMerge(customizationRepoName, source, substitutions = {}) {
|
|
|
176
176
|
source + ".*/node_modules/" +
|
|
177
177
|
"|" +
|
|
178
178
|
source + "/.*\\.sh" +
|
|
179
|
+
"|" +
|
|
180
|
+
source + ".*/pom.xml" +
|
|
181
|
+
"|" +
|
|
182
|
+
source + ".*/target/" +
|
|
183
|
+
"|" +
|
|
184
|
+
source + ".*/test/" +
|
|
179
185
|
")"
|
|
180
186
|
);
|
|
181
187
|
|
|
@@ -121,7 +121,7 @@ function _formatRsyncOutput(product, rsyncOutput) {
|
|
|
121
121
|
.slice(1, -3) // O Header e o Footer não interessam
|
|
122
122
|
.filter(line => /^[*<>]/.test(line)) // Só interessam linhas de mudança (ie, * ou > ou < )
|
|
123
123
|
.map(line => {
|
|
124
|
-
let linePart = line.split(
|
|
124
|
+
let linePart = line.split(/\s+/);
|
|
125
125
|
if (linePart[0] == "*deleting")
|
|
126
126
|
return "delete".brightRed + " " + product + "/" + linePart[1];
|
|
127
127
|
if (linePart[0].startsWith("<fc"))
|
package/package.json
CHANGED