@cocreate/cli 1.42.5 → 1.42.6

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.42.6](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.42.5...v1.42.6) (2023-10-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * cerbot using basic command ([1a96cf1](https://github.com/CoCreate-app/CoCreate-cli/commit/1a96cf15032edb4bee3146a1f03fffb88bfc5683))
7
+
1
8
  ## [1.42.5](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.42.4...v1.42.5) (2023-10-25)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/cli",
3
- "version": "1.42.5",
3
+ "version": "1.42.6",
4
4
  "description": "Polyrepo management bash CLI tool. Run all git commands and yarn commands on multiple repositories. Also includes a few custom macros for cloning, installing, etc.",
5
5
  "keywords": [
6
6
  "cli",
@@ -35,8 +35,8 @@ async function createCert(host) {
35
35
  let test = await checkDns(host)
36
36
  console.log('checked dns from createCert', test)
37
37
  if (test) {
38
- await exec(`sudo certbot certonly --manual -d *.${host} -d ${host} --agree-tos --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory`);
39
- let exitCode = await spawn('sudo', ['certbot', 'certonly', '--manual', '-d', `*.${host}`, '-d', host, '--agree-tos', '--preferred-challenges', 'dns-01', '--server', 'https://acme-v02.api.letsencrypt.org/directory'], { stdio: 'inherit', cwd: process.cwd() })
38
+ await exec(`sudo certbot certonly -d ${host}`);
39
+ // let exitCode = await spawn('sudo', ['certbot', 'certonly', '--manual', '-d', `*.${host}`, '-d', host, '--agree-tos', '--preferred-challenges', 'dns-01', '--server', 'https://acme-v02.api.letsencrypt.org/directory'], { stdio: 'inherit', cwd: process.cwd() })
40
40
  if (exitCode !== 0) {
41
41
  failed.push({ name: false, des: `creating directory failed` })
42
42
  } else
@@ -143,6 +143,6 @@ async function test(host) {
143
143
  }
144
144
 
145
145
 
146
- test('cocreate.app')
146
+ // test('cocreate.app')
147
147
 
148
148
  module.exports = { checkDns, checkCert, createCert, deleteCert }