cob-cli 2.31.0 → 2.32.0
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.
|
@@ -132,10 +132,10 @@ async function downloadCustomizationFiles(customizationRepo) {
|
|
|
132
132
|
|
|
133
133
|
process.chdir(cacheDir);
|
|
134
134
|
if (!fs.existsSync(path.resolve(cacheDir,customizationRepo.name))) {
|
|
135
|
-
console.log(" git
|
|
136
|
-
await git().clone(customizationRepo.
|
|
135
|
+
console.log(" git clone " + customizationRepo.clone_url);
|
|
136
|
+
await git().clone(customizationRepo.clone_url);
|
|
137
137
|
} else {
|
|
138
|
-
console.log(" git pull " + customizationRepo.
|
|
138
|
+
console.log(" git pull " + customizationRepo.clone_url);
|
|
139
139
|
process.chdir(customizationRepo.name);
|
|
140
140
|
try {
|
|
141
141
|
await git().pull();
|
package/package.json
CHANGED