@agilecustoms/envctl 0.30.0 → 0.30.2
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
|
@@ -186,7 +186,7 @@ export class EnvCtl {
|
|
|
186
186
|
return;
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
|
-
console.log('
|
|
189
|
+
console.log('Sending delete command');
|
|
190
190
|
const message = await this.envApi.delete(env);
|
|
191
191
|
console.log(message);
|
|
192
192
|
}
|
|
@@ -228,6 +228,7 @@ export class EnvCtl {
|
|
|
228
228
|
if (!env) {
|
|
229
229
|
throw new KnownException(`Environment ${key} does not exist`);
|
|
230
230
|
}
|
|
231
|
+
console.log(`Env status: ${env.status}`);
|
|
231
232
|
return env;
|
|
232
233
|
}
|
|
233
234
|
async promptUnlock(env, statuses = [EnvStatus.Deploying, EnvStatus.Updating]) {
|