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 " + customizationRepo.ssh_url);
136
- await git().clone(customizationRepo.ssh_url);
135
+ console.log(" git clone " + customizationRepo.clone_url);
136
+ await git().clone(customizationRepo.clone_url);
137
137
  } else {
138
- console.log(" git pull " + customizationRepo.ssh_url);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cob-cli",
3
- "version": "2.31.0",
3
+ "version": "2.32.0",
4
4
  "description": "A command line utility to help Cult of Bits partners develop with higher speed and reusing common code and best practices.",
5
5
  "preferGlobal": true,
6
6
  "repository": {