@agilecustoms/envctl 0.15.0 → 0.15.1

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.
@@ -53,7 +53,7 @@ export class TerraformAdapter {
53
53
  }
54
54
  async plan(env, tfArgs, cwd, attemptNo = 1) {
55
55
  const args = this.tfArgs(env, tfArgs);
56
- console.log('Running: terraform plan -auto-approve', ...args);
56
+ console.log('Running: terraform plan -auto-approve', ...args, '\n');
57
57
  try {
58
58
  await this.processRunner.run('terraform', ['plan', ...args], cwd);
59
59
  }
@@ -76,7 +76,7 @@ export class TerraformAdapter {
76
76
  }
77
77
  async apply(env, tfArgs, cwd, attemptNo = 1) {
78
78
  const args = this.tfArgs(env, tfArgs);
79
- console.log('Running: terraform apply -auto-approve', ...args);
79
+ console.log('Running: terraform apply -auto-approve', ...args, '\n');
80
80
  this.printTime();
81
81
  try {
82
82
  await this.processRunner.run('terraform', ['apply', '-auto-approve', ...args], cwd);
@@ -107,7 +107,7 @@ export class TerraformAdapter {
107
107
  }
108
108
  };
109
109
  const args = this.tfArgs(env, tfArgs);
110
- console.log('Running: terraform destroy -auto-approve');
110
+ console.log('Running: terraform destroy -auto-approve', ...args, '\n');
111
111
  try {
112
112
  await this.processRunner.run('terraform', ['destroy', '-auto-approve', ...args], cwd, scanner);
113
113
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agilecustoms/envctl",
3
3
  "description": "node.js CLI client for manage environments",
4
- "version": "0.15.0",
4
+ "version": "0.15.1",
5
5
  "author": "Alex Chekulaev",
6
6
  "type": "module",
7
7
  "bin": {