@agilecustoms/envctl 0.22.0 → 0.22.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.
- package/dist/service/EnvCtl.js +2 -2
- package/package.json +1 -1
package/dist/service/EnvCtl.js
CHANGED
|
@@ -178,8 +178,8 @@ export class EnvCtl {
|
|
|
178
178
|
}
|
|
179
179
|
console.log('Deleting env');
|
|
180
180
|
}
|
|
181
|
-
await this.envApi.delete(env);
|
|
182
|
-
console.log(
|
|
181
|
+
const message = await this.envApi.delete(env);
|
|
182
|
+
console.log(message);
|
|
183
183
|
}
|
|
184
184
|
async destroy(project, envName, tfArgs, force, cwd) {
|
|
185
185
|
const env = await this.get(project, envName);
|