@agilecustoms/envctl 0.16.0 → 0.16.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 -1
- package/package.json +1 -1
package/dist/service/EnvCtl.js
CHANGED
|
@@ -148,7 +148,8 @@ export class EnvCtl {
|
|
|
148
148
|
this.checkStatus(env);
|
|
149
149
|
const kind = this.cliHelper.ensureKind(undefined, cwd);
|
|
150
150
|
if (env.kind && env.kind !== kind) {
|
|
151
|
-
const answerYes = await this.cliHelper.promptYesNo(`Env ${env.key} kind (dir-name): ${env.kind}
|
|
151
|
+
const answerYes = await this.cliHelper.promptYesNo(`Env ${env.key} kind (dir-name): ${env.kind}\n`
|
|
152
|
+
+ 'You\'re deleting env deployed from different dir\n'
|
|
152
153
|
+ 'Do you want to proceed?');
|
|
153
154
|
if (!answerYes) {
|
|
154
155
|
console.log('Aborting deletion');
|