@devramps/cli 0.1.13 → 0.1.14
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2595,12 +2595,12 @@ async function bootstrapCommand(options) {
|
|
|
2595
2595
|
spinner.succeed("Deployment plan ready");
|
|
2596
2596
|
if (options.dryRun) {
|
|
2597
2597
|
await showDryRunPlan(plan);
|
|
2598
|
-
|
|
2598
|
+
process.exit(0);
|
|
2599
2599
|
}
|
|
2600
2600
|
const confirmed = await confirmDeploymentPlan(plan);
|
|
2601
2601
|
if (!confirmed) {
|
|
2602
2602
|
info("Deployment cancelled by user.");
|
|
2603
|
-
|
|
2603
|
+
process.exit(0);
|
|
2604
2604
|
}
|
|
2605
2605
|
const oidcProviderUrl = getOidcProviderUrlFromEndpoint(options.endpointOverride);
|
|
2606
2606
|
await executeDeployment(plan, pipelines, pipelineArtifacts, authData, identity.accountId, options, oidcProviderUrl);
|